If I'm trying to find a bug that's being called lower in the call stack, that'd be "down" the stack, right?
|
|
|||||||||||||||
|
closed as not a real question by Daniel A. White, Carl Norum, 17 of 26, Chris Lutz, Oscar Reyes Nov 3 at 22:00 |
|
|
For an upward growing stack (think plates), then yes. Something in a stack frame lower than your current frame is said to be 'below' you (though to be honest, I don't hear people say 'down' the stack often). EDIT: And by 'lower', I mean in a stack frame which you've stored aside in order to get to your current frame. For instance:
At the 'peak', (Your comment about 'calling' a bug is also somewhat confusing.) |
|||
|
|
|
Correct. "Down" the stack means inside nested function calls. If A calls B and B calls C, C is "down the stack" from A, and A is "up the stack" from C. Additionally, one doesn't usually "call" a bug. One "encounters" or "reproduces" bugs. |
||
|
|
