| 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 |
| 37 | { |
| 38 | ::das::SimFunction* ptr = ctx.findFunction((const char*)name); |
| 39 | return SimFunctionId(ptr); |
| 40 | } |
| 41 | |
| 42 | Register ContextImpl::eval(SimFunctionId func, Register* args, Sequence* generated) SKR_NOEXCEPT |
| 43 | { |