| 31 | } |
| 32 | |
| 33 | void ScriptContext::to_out(const char* message) { skr_log_log(SKR_LOG_LEVEL_INFO, this->name.c_str(), 0, message); } |
| 34 | void ScriptContext::to_err(const char* message) { skr_log_log(SKR_LOG_LEVEL_ERROR, this->name.c_str(), 0, message); } |
| 35 | |
| 36 | SimFunctionId ContextImpl::find_function(const char8_t* name) SKR_NOEXCEPT |
nothing calls this directly
no test coverage detected