| 15 | #include "CtrlrPanel/CtrlrPanel.h" |
| 16 | |
| 17 | CtrlrLuaDebugger::CtrlrLuaDebugger(CtrlrLuaManager &_owner) : owner(_owner) |
| 18 | { |
| 19 | _INF("CtrlrLuaManager::ctor create debugger"); |
| 20 | |
| 21 | wrapForLua (owner.getLuaState()); |
| 22 | |
| 23 | luabind::globals(owner.getLuaState())["ctrlrDebugger"] = this; |
| 24 | |
| 25 | // String debugLua(String(BinaryData::debugger_lua, BinaryData::debugger_luaSize)); |
| 26 | // owner.runCode(debugLua, "debugger.lua"); |
| 27 | } |
| 28 | |
| 29 | CtrlrLuaDebugger::~CtrlrLuaDebugger() |
| 30 | { |
nothing calls this directly
no test coverage detected