MCPcopy Create free account
hub / github.com/SakuraEngine/SakuraEngine / find_function

Method find_function

modules/experimental/daScript/daScript/src/ctx.cpp:36–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34void ScriptContext::to_err(const char* message) { skr_log_log(SKR_LOG_LEVEL_ERROR, this->name.c_str(), 0, message); }
35
36SimFunctionId 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
42Register ContextImpl::eval(SimFunctionId func, Register* args, Sequence* generated) SKR_NOEXCEPT
43{

Callers 4

tutorialFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
tutorialFunction · 0.80

Calls 1

findFunctionMethod · 0.45

Tested by 1

tutorialFunction · 0.64