| 74 | } |
| 75 | |
| 76 | void es_script::EngineContext::addFunction(FunctionNode *node, Function *function) { |
| 77 | m_functions[node] = function; |
| 78 | } |
| 79 | |
| 80 | Function *es_script::EngineContext::getFunction(FunctionNode *exhaust) const { |
| 81 | auto it = m_functions.find(exhaust); |