-
-
Notifications
You must be signed in to change notification settings - Fork 34.2k
Closed
Labels
v8 engineIssues and PRs related to the V8 dependency.Issues and PRs related to the V8 dependency.
Description
i report the bug to Microsoft/vscode in microsoft/vscode#953. then, They reply the bug is caused by node.js.
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); [fixed fomatting - bnoordhuis]
Metadata
Metadata
Assignees
Labels
v8 engineIssues and PRs related to the V8 dependency.Issues and PRs related to the V8 dependency.