| 412 | } |
| 413 | |
| 414 | bool ScriptCompiler::_fireEvent(ScriptCompilerEvent *evt, void *retval) |
| 415 | { |
| 416 | if(mListener) |
| 417 | return mListener->handleEvent(this, evt, retval); |
| 418 | return false; |
| 419 | } |
| 420 | |
| 421 | AbstractNodeListPtr ScriptCompiler::convertToAST(const ConcreteNodeList &nodes) |
| 422 | { |
no test coverage detected