We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9715f8 commit 42171b2Copy full SHA for 42171b2
1 file changed
src/perftips.ts
@@ -61,8 +61,7 @@ export class PerfTipsProvider implements vs.DebugAdapterTracker {
61
if (!frame.source)
62
return;
63
64
- // work around https://github.com/microsoft/vscode/issues/114229
65
- const srcuri = frame.source.sourceReference ? vs.debug.asDebugSourceUri(frame.source) : vs.Uri.file(frame.source.path!);
+ const srcuri = vs.debug.asDebugSourceUri(frame.source);
66
// FIXME: this will open another editor if we are in a different view column
67
const editor = await vs.window.showTextDocument(srcuri);
68
0 commit comments