HaxeFoundation / HaxeFoundation/hxcpp-debugger
Debugger doesn't print values of Map type
Open
- Dominant language
- Haxe
- Stars
- 49
- Forks
- 16
- PR merge metrics
- No merged PRs in 30d
Description
````
class Test {
private var map:Map;
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 =
{
}
````
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.