You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this release we have slightly changed the behaviour of the "smartStep" feature of node-debug.
Previously "smartStep" would skip over JavaScript code in these two cases:
JavaScript transpiled from source that could not be successfully mapped back to the source via the source map. Typically this is generated helper code created for some language feature not available in the target language which has no corresponding language construct in the source language.
JavaScript that is not transpiled at all (and has no source map).
With this release "smartStep" only skips JavaScript in the first case.
This makes it easier to debug into plain JavaScript (e.g. libraries).
Verify that "smartStep" no longer skips over JavaScript code that was not transpiled (and is not associated with a source map).
The text was updated successfully, but these errors were encountered:
Refs: microsoft/vscode-chrome-debug-core#245
Complexity: 3
Authors: @weinand, @roblourens
In this release we have slightly changed the behaviour of the "smartStep" feature of node-debug.
Previously "smartStep" would skip over JavaScript code in these two cases:
With this release "smartStep" only skips JavaScript in the first case.
This makes it easier to debug into plain JavaScript (e.g. libraries).
Verify that "smartStep" no longer skips over JavaScript code that was not transpiled (and is not associated with a source map).
The text was updated successfully, but these errors were encountered: