-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Debug Mode Code lenses #6792
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
Debug Mode Code lenses #6792
Conversation
private getStackTrace(message: any): IDebugLocation | undefined { | ||
if (message.command === 'stackTrace') { | ||
if (message.body.stackFrames.length > 0) { | ||
const lineNumber = message.body.stackFrames[0].line; |
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.
stackFrames [](start = 48, length = 11)
I believe there is a DebugProtocol set of types. I used them in some of the MockDebuggerService. Might make this easier to verify #Resolved
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.
Ahh, there totally is. I wasn't liking how loose the any stuff was. I'll use 'em
In reply to: 309303086 [](ancestors = 309303086)
throw new Error('Method not implemented.'); | ||
} | ||
public registerDebugAdapterTrackerFactory(_debugType: string, _provider: DebugAdapterTrackerFactory): Disposable { | ||
throw new Error('Method not implemented.'); |
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.
Error [](start = 18, length = 5)
I think if you implemented this, we could have a functional test for this stuff. #Resolved
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.
Debug Mode Code lenses (#6792)
* Make dataviewers open faster (#6795) * Fix experiments hash parsing (#6492) * Simplify & fix crypto.createHash * Add tests * Fix python test in news folder (#6398) * Fix broken python tests in news * Revert changes * Release cherry pick (#6515) * Enable experiment for always displaying the test explorer (#6330) * Add logging * Point release - Updated package.json and CHANGELOG (#6516) * Cherry pick change from master * Fix npm audit * Make dataviewers open faster * Fix package-lock.json * Debug Mode Code lenses (#6792) * Cherry-pick miniconda fix into rc * August Release (#6868) * Exclude .env file from extension (#6872) * Update from master * Update package lock
For #6672
package-lock.json
has been regenerated by runningnpm install
(if dependencies have changed)