Chrome Debugger skip wrapper functions, until they call the real function

1

I am debugging in Chrome, there are some functions that are just wrappers, and I want to quickly skip them, something like this:

function breakpointHere() {
  step1();
  callWrappedFunc();
}

function callWrappedFunc() {
  blablabla();
  callRealFunc();
}

function callRealFunc() {
  ohYeah();
}

Here callWrappedFunc has no important value, I want to completely skip and jump right into callRealFunc, how do I do that?

user3995789

Posted 2014-12-06T11:36:18.853

Reputation: 11

@malakrsnaslava, It definitely helps, and probably solves my issue, though it skips the whole file, I will accept an answer that skips a single function. – user3995789 – 2014-12-11T12:35:34.857

No answers