| 83 | } |
| 84 | |
| 85 | int32_t ScriptEngine::runFunctionBySymIndex(size_t symIdx, bool clearDataStack) |
| 86 | { |
| 87 | #if PROFILE_SCRIPT_CALLS |
| 88 | startProfiling(symIdx); |
| 89 | #endif |
| 90 | int32_t ret = m_pVM->runFunctionBySymIndex(symIdx, clearDataStack); |
| 91 | #if PROFILE_SCRIPT_CALLS |
| 92 | stopProfiling(symIdx); |
| 93 | #endif |
| 94 | return ret; |
| 95 | } |
| 96 | |
| 97 | void ScriptEngine::pushInt(int32_t v) |
| 98 | { |
no outgoing calls
no test coverage detected