| 400 | } |
| 401 | |
| 402 | void FreeDynamicScriptThread(ScriptThread *script_thread) |
| 403 | { |
| 404 | assert(script_thread == scriptThreadCallbacks.top().get()); |
| 405 | if (script_thread == scriptThreadCallbacks.top().get()) |
| 406 | scriptThreadCallbacks.pop(); |
| 407 | } |
| 408 | |
| 409 | RunScFuncResult RunScriptFunction(const RuntimeScript *script, const String &tsname, size_t numParam, const RuntimeScriptValue *params) |
| 410 | { |
no test coverage detected