Skip to content

Commit

Permalink
Let Hint HPointer also display HAbstract pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiaomao committed Nov 25, 2024
1 parent 01c822e commit 1e931f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HLAdapter.hx
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ class HLAdapter extends DebugSession {
return { name : name, type : tstr, value : dbg.eval.valueStr(value), evaluateName : evalName, variablesReference : fields.length == 0 ? 0 : allocValue(VValue(value, evalName)), namedVariables : fields.length };
default:
}
return { name : name, type : tstr, value : dbg.eval.valueStr(value), evaluateName : evalName, variablesReference : 0 };
return { name : name, type : tstr, value : dbg.eval.valueStr(value) + pstr, evaluateName : evalName, variablesReference : 0 };
}

override function variablesRequest(response:VariablesResponse, args:VariablesArguments) {
Expand Down

0 comments on commit 1e931f3

Please sign in to comment.