We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I've noticed VM scripts do not have their breakpoints triggered. Do you have any insight on this?
Probably due to the debugger protocol not being supported in VM, right?
For example, try pasting this in the console:
vm = require('vm') vm.runInContext( 'console.log("before debugger");\n' + 'debugger;\n' + 'console.log("after debugger");\n' + '//# sourceURL=wat.js', vm.createContext({ console: console }) )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've noticed VM scripts do not have their breakpoints triggered. Do you have any insight on this?
Probably due to the debugger protocol not being supported in VM, right?
For example, try pasting this in the console:
The text was updated successfully, but these errors were encountered: