| 106 | } |
| 107 | |
| 108 | int createNode(lua_State* L) |
| 109 | { |
| 110 | auto arenaRef = EmmyFacade::Get().GetDebugger(L)->GetVariableArena(); |
| 111 | if (arenaRef) |
| 112 | { |
| 113 | auto idx = arenaRef->Alloc(); |
| 114 | pushVariable(L, idx); |
| 115 | return 1; |
| 116 | } |
| 117 | else |
| 118 | { |
| 119 | return 0; |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | ExtensionPoint::ExtensionPoint() |
| 124 | { |
nothing calls this directly
no test coverage detected