Skip to content

can not step in constructor, will will terminate node.exe #953

@flyingcodes

Description

@flyingcodes

1
2
3

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);

Metadata

Metadata

Assignees

Labels

debugDebug viewlet, configurations, breakpoints, adapter issues

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions