| 394 | void PostScriptProcessing(); |
| 395 | |
| 396 | ScriptThread *AllocateDynamicScriptThread() |
| 397 | { |
| 398 | scriptThreadCallbacks.push(std::make_unique<ScriptThread>(String::FromFormat("Callback%04zu", scriptThreadCallbacks.size() + 1u))); |
| 399 | return scriptThreadCallbacks.top().get(); |
| 400 | } |
| 401 | |
| 402 | void FreeDynamicScriptThread(ScriptThread *script_thread) |
| 403 | { |
no test coverage detected