Skip to content

Commit

Permalink
Unify stack str on variables request
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiaomao committed Jun 24, 2024
1 parent 0102685 commit 27e6ae4
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 @@ -862,7 +862,7 @@ class HLAdapter extends DebugSession {
var st = stack[i];
vars.push({
name : ""+i,
value : (st.context == null ? "" : st.context.obj.name + "." + st.context.field) + " (" + getFilePath(st.file) + ":" + st.line + ")",
value : stackStr(st) + " (" + getFilePath(st.file) + ":" + st.line + ")",
variablesReference: 0,
});
}
Expand Down

0 comments on commit 27e6ae4

Please sign in to comment.