Skip to content

Instantly share code, notes, and snippets.

@weizman
Created September 1, 2021 05:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weizman/a23f9a84015510bbe1260feb46d0b3c7 to your computer and use it in GitHub Desktop.
Save weizman/a23f9a84015510bbe1260feb46d0b3c7 to your computer and use it in GitHub Desktop.
/*
step in / out / over any function you want starting at this point
*/
function y(b) {
const svn_io379w = initTracker('y', arguments);
return b - 1;
}
var x = function x(a) {
const svn_io379w = initTracker('x', arguments);
return y(a + 1);
};
alert(3 === x(3));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment