Skip to content

Commit 1c18c3c

Browse files
committed
showing function address when name is not available
1 parent 32ed3fb commit 1c18c3c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

debugger/debugger.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ export namespace Debugger {
132132
}
133133
if (info.name) {
134134
frame.func = info.name;
135+
} else if (info.func) {
136+
frame.func = tostring(info.func);
135137
}
136138
if (i === frameIndex) {
137139
frame.active = true;

0 commit comments

Comments
 (0)