| 2308 | currentFrame = 0; |
| 2309 | } |
| 2310 | unsigned int Executor::GetNextAddress() |
| 2311 | { |
| 2312 | return currentFrame == fcallStack.size() ? 0 : (unsigned int)(fcallStack[currentFrame++] - cmdBase); |
| 2313 | } |
| 2314 | |
| 2315 | void* Executor::GetStackStart() |
| 2316 | { |
no test coverage detected