wasm: display inherited fields in debugger

This commit is contained in:
Alexey Andreev 2023-02-17 21:04:51 +01:00
parent 7bde7d9642
commit f2ae748705

View File

@ -336,7 +336,9 @@ class WasmValueImpl extends Value {
return Collections.emptyMap();
}
var properties = new LinkedHashMap<String, Variable>();
for (var field : cls.instanceFields()) {
var ancestorCls = cls;
while (ancestorCls != null) {
for (var field : ancestorCls.instanceFields()) {
long longValue;
switch (field.type()) {
case BOOLEAN:
@ -364,6 +366,8 @@ class WasmValueImpl extends Value {
var value = new WasmValueImpl(debugger, debugInfo, field.type(), callFrame, longValue);
properties.put(field.name(), new Variable(field.name(), value));
}
ancestorCls = ancestorCls.superclass();
}
addCommonProperties(properties, cls);
return properties;
});