| 78 | } |
| 79 | |
| 80 | Function *es_script::EngineContext::getFunction(FunctionNode *exhaust) const { |
| 81 | auto it = m_functions.find(exhaust); |
| 82 | if (it != m_functions.end()) { |
| 83 | return it->second; |
| 84 | } |
| 85 | else return nullptr; |
| 86 | } |
| 87 | |
| 88 | void es_script::EngineContext::addImpulseResponse( |
| 89 | ImpulseResponseNode *node, |