-
Notifications
You must be signed in to change notification settings - Fork 37k
Use URI formatters for "Copy Call Stack" (fixes #224685) #224686
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| const labelFormatter3 = (uri: URI) => { return `!${uri.fsPath}`; }; | ||
| const thirdSource = new Source({ name: "module.js", path: "val\\module.js" }, 'aDebugSessionId', mockUriIdentityService, new NullLogService()); | ||
| const stackFrame3 = new StackFrame(thread, 2, thirdSource, 'module', 'normal', { startLineNumber: undefined!, startColumn: undefined!, endLineNumber: undefined!, endColumn: undefined! }, 2, true); | ||
| assert.strictEqual(stackFrame3.toString(labelFormatter3), 'mmmodule.js:1'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This test is failing, but I'm not sure what you intended, can you look at it? Did you mean for the label formatter to be called?
roblourens
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR, sorry for the slow response. Just one question on the unit test
|
Seems stale |
See issue #224685