(L *LState)
| 89 | } |
| 90 | |
| 91 | func debugGetMetatable(L *LState) int { |
| 92 | L.Push(L.GetMetatable(L.CheckAny(1))) |
| 93 | return 1 |
| 94 | } |
| 95 | |
| 96 | func debugGetUpvalue(L *LState) int { |
| 97 | fn := L.CheckFunction(1) |
nothing calls this directly
no test coverage detected
searching dependent graphs…