When debugging JS using chrome development tool, while using step into next function(ctrl + ;). I'm getting into file names like VM****. Is there a way to get rid of this?
javascript debugging gets into VM**** file how to blackbox these files? [duplicate]
Asked Answered
#17368060 –
Denna
As per above link, this is a duplicate question and should be marked accordingly by someone with that privilege. –
Penuche
VM is for 'virtual machine.' It means the Javascript engine had to create the code to run it, either inline in an element event handler or through a call to eval(). –
Judsen
can we blackbox/or simply skip this script while debugging, Is there a way for that? –
Locality
ended up with this #29898250 –
Locality
I know this is a rather old subject, but I had the same issue and noticed if I used an Incognito Chrome instance, the VMXXXX scripts no longer show up during the trace when I did an Event Listener Breakpoint (was debugging click). If this helps anyone.
© 2022 - 2024 — McMap. All rights reserved.