(L *LState)
| 35 | } |
| 36 | |
| 37 | func tableMaxN(L *LState) int { |
| 38 | L.Push(LNumber(L.CheckTable(1).MaxN())) |
| 39 | return 1 |
| 40 | } |
| 41 | |
| 42 | func tableRemove(L *LState) int { |
| 43 | tbl := L.CheckTable(1) |
nothing calls this directly
no test coverage detected
searching dependent graphs…