HaxeFoundation / hxcpp-debugger

Cross-platform debugger for hxcpp
Apache License 2.0
49 stars 16 forks source link

Debugger doesn't print values of Map type #18

Open nulld opened 7 years ago

nulld commented 7 years ago
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 =
{
}