Skip to content
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

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

Closed
flyingcodes opened this issue Dec 3, 2015 · 2 comments
Closed

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

flyingcodes opened this issue Dec 3, 2015 · 2 comments
Assignees
Labels
debug Debug viewlet, configurations, breakpoints, adapter issues
Milestone

Comments

@flyingcodes
Copy link

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

@weinand weinand added bug Issue identified by VS Code Team member as probable bug debug Debug viewlet, configurations, breakpoints, adapter issues labels Dec 3, 2015
@egamma egamma modified the milestone: Backlog Dec 10, 2015
@weinand
Copy link
Contributor

weinand commented Dec 15, 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:

node debug t1.js

Please file this bug against node.js.

@weinand weinand closed this as completed Dec 15, 2015
@weinand weinand removed the bug Issue identified by VS Code Team member as probable bug label Dec 15, 2015
@weinand weinand modified the milestones: Dec 2015, Backlog Dec 15, 2015
@flyingcodes
Copy link
Author

@weinand thanks, i had reported to node.js project. nodejs/node#4307

@vscodebot vscodebot bot locked and limited conversation to collaborators Nov 18, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
debug Debug viewlet, configurations, breakpoints, adapter issues
Projects
None yet
Development

No branches or pull requests

3 participants