You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We now support function breakpoints on global functions for node debugging. Verify:
you can add, remove, update a function breakpoints
program breaks on a function for the function breakpoint you added
Please note that we only support global functions that have been seen by node and are defined. This is different than line oriented breakpoints which work even if they are not defined when the program starts.
So you probably have to use the "Reapply Breakpoints" action after you have started the target.
Global functions are "setTimeout" etc. and this:
// global function
foo = function(n) {
return n;
}
The text was updated successfully, but these errors were encountered:
We now support function breakpoints on global functions for node debugging. Verify:
Please note that we only support global functions that have been seen by node and are defined. This is different than line oriented breakpoints which work even if they are not defined when the program starts.
So you probably have to use the "Reapply Breakpoints" action after you have started the target.
Global functions are "setTimeout" etc. and this:
The text was updated successfully, but these errors were encountered: