hxcpp-debugger icon indicating copy to clipboard operation
hxcpp-debugger copied to clipboard

Debugger doesn't print values of Map type

Open nulld opened this issue 8 years ago • 0 comments

class Test {
    private var map:Map<Int, Int>;

    public function new() {
        map = [1 => 1, 2 => 2];
        trace(map);
    }

In debugger output

print this.map

this.map : haxe.ds.IntMap =
{
    h : Dynamic = ...
}

6> print this.map.h

this.map.h : Dynamic =
{
}

nulld avatar May 04 '17 05:05 nulld