(L *LState)
| 40 | } |
| 41 | |
| 42 | func tableRemove(L *LState) int { |
| 43 | tbl := L.CheckTable(1) |
| 44 | if L.GetTop() == 1 { |
| 45 | L.Push(tbl.Remove(-1)) |
| 46 | } else { |
| 47 | L.Push(tbl.Remove(L.CheckInt(2))) |
| 48 | } |
| 49 | return 1 |
| 50 | } |
| 51 | |
| 52 | func tableConcat(L *LState) int { |
| 53 | tbl := L.CheckTable(1) |
nothing calls this directly
no test coverage detected
searching dependent graphs…