Skip to content

Commit

Permalink
Add value info for this.fields error message
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiaomao committed Jun 19, 2024
1 parent 42b2ebf commit 0e3a7e4
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 @@ -618,7 +618,7 @@ class HLAdapter extends DebugSession {
var vthis = dbg.getValue("this");
var fields = dbg.eval.getFields(vthis);
if( fields == null )
debug("Can't get fields for "+dbg.eval.typeStr(vthis.t));
debug("Can't get fields for this: " + vthis.v.getName() + " of " + dbg.eval.typeStr(vthis.t));
else
response.body.scopes.push({
name : "Members",
Expand Down

0 comments on commit 0e3a7e4

Please sign in to comment.