We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe16794 commit 3321b83Copy full SHA for 3321b83
src/webkit/webKitDebugAdapter.ts
@@ -507,15 +507,12 @@ export class WebKitDebugAdapter implements IDebugAdapter {
507
} :
508
{
509
// Name should be undefined, work around VS Code bug 20274
510
- name: 'eval: ' + script.scriptId,
+ name: undefined,
511
sourceReference: scriptIdToSourceReference(script.scriptId)
512
};
513
}
514
else {
515
- source = {
516
- name: 'eval: ' + 1,
517
- sourceReference: scriptIdToSourceReference('1')
518
- };
+ source = { name: 'eval: Unknown' };
519
520
521
// If the frame doesn't have a function name, it's either an anonymous function
0 commit comments