debug "step into" not working with await Follow
When debugging JavaScript code when I put a breakpoint on a line with an await the StepInto doesn't work, the whole line is skipped (same as if I had done F8)
ex :
let vRes=await this.wGenerateCode();
Please sign in to leave a comment.
could you try composing a sample project the issue can be reproduced with?Can be related to a known V8 bug, https://bugs.chromium.org/p/v8/issues/detail?id=10497
I upgraded my NodeJs version from 14.5.0 to 14.8.0, and effectively the breakpoints steps into the code, but not at the correct location.
I forgot to say I was debugging "browser code" from Intellij.
How can I upgrade to the latest v8 version ?
if you are debugging a client side code that runs in browser, the Node.js version shouldn't matter, it's Chrome version that matters...