(L *LState)
| 129 | } |
| 130 | |
| 131 | func debugSetMetatable(L *LState) int { |
| 132 | L.CheckTypes(2, LTNil, LTTable) |
| 133 | obj := L.Get(1) |
| 134 | mt := L.Get(2) |
| 135 | L.SetMetatable(obj, mt) |
| 136 | L.SetTop(1) |
| 137 | return 1 |
| 138 | } |
| 139 | |
| 140 | func debugSetUpvalue(L *LState) int { |
| 141 | fn := L.CheckFunction(1) |
nothing calls this directly
no test coverage detected
searching dependent graphs…