| 137 | } |
| 138 | |
| 139 | void DevConsoleView::onExecuteCommand(const std::string& cmd) |
| 140 | { |
| 141 | script::Engine::setDefault(m_language.getValue()); |
| 142 | m_engine.printLastResult(); |
| 143 | m_engine.eval(cmd); |
| 144 | } |
| 145 | |
| 146 | void DevConsoleView::onConsolePrint(const char* text) |
| 147 | { |
nothing calls this directly
no test coverage detected