(L *LState)
| 6 | ) |
| 7 | |
| 8 | func OpenDebug(L *LState) int { |
| 9 | dbgmod := L.RegisterModule(DebugLibName, debugFuncs) |
| 10 | L.Push(dbgmod) |
| 11 | return 1 |
| 12 | } |
| 13 | |
| 14 | var debugFuncs = map[string]LGFunction{ |
| 15 | "getfenv": debugGetFEnv, |
nothing calls this directly
no test coverage detected
searching dependent graphs…