This is one of my pet issues w/ Chrome debugger. I have a function that calls 3rd-party library that internally calls 20 other functions and the 20th library function again calls another function in my library.
MyFunctionA()
-> calls libFunctionA()
-> calls libFunctionB()
...
-> calls libFunctionZ()
->calls MyFunctionB() {debugger;}
If I put a debugger in MyFunctionB, I see stack trace like below:
- MyFunctionB
- libFunctionZ
- libFunctionY
- libFunctionX
- ...
- ...
- MyFunctionA
I want to hide all the libFunctions(X,Y, Z etc..) so I can easily see only my libraries functions in the stack like below:
- MyFunctionB
- ..hidden library functions..
- MyFunctionA
Is there any way to do this in either Chrome or Firefox debuggers?