HaxeFoundation / HaxeFoundation/hxcpp-debugger

Debugger doesn't print values of Map type

未关闭
#18 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
Haxe
星标
49
派生
16
PR 合并指标
30 天内没有已合并 PR

描述

````
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 =
{
}
````

贡献指南

这个仓库没有索引到贡献指南

调研方向

Start with the Test class reproducer and inspect the debugger output for this.map, which currently shows an empty internal h value instead of the entries. Reproduce the Map inspection and confirm that its stored keys and values, including 1=>1 and 2=>2, are displayed when done.

由索引模型根据 Issue 内容生成。

评估

领域
devtools
Issue 类型
缺陷
难度
3/5
预计耗时
1-2 天
活跃度
停滞
描述清晰度
基本清楚
新手友好度
42/100

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。