| 2304 | } |
| 2305 | |
| 2306 | void Executor::BeginCallStack() |
| 2307 | { |
| 2308 | currentFrame = 0; |
| 2309 | } |
| 2310 | unsigned int Executor::GetNextAddress() |
| 2311 | { |
| 2312 | return currentFrame == fcallStack.size() ? 0 : (unsigned int)(fcallStack[currentFrame++] - cmdBase); |
no outgoing calls
no test coverage detected