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
class CB extends CA {
constructor(p){
super(p);
}
}
var cb = null; // debugger pointer
//cb = new CB(123); // can not step in, will terminate node.exe
cb = new CB(); // step in, then follow line can step in, else can not
cb = new CB(123); // can step in if above is step in
console.log(cb);
The text was updated successfully, but these errors were encountered:
weinand
added
bug
Issue identified by VS Code Team member as probable bug
debug
Debug viewlet, configurations, breakpoints, adapter issues
labels
Dec 3, 2015
@flyingcodes this is a node.js and not a VSCode problem. If I use node's builtin debugger from the command line and follow your steps I see the same crash:
class CA {
constructor(){
}
}
class CB extends CA {
constructor(p){
super(p);
}
}
var cb = null; // debugger pointer
//cb = new CB(123); // can not step in, will terminate node.exe
cb = new CB(); // step in, then follow line can step in, else can not
cb = new CB(123); // can step in if above is step in
console.log(cb);
The text was updated successfully, but these errors were encountered: