(L *LState)
| 5 | ) |
| 6 | |
| 7 | func OpenTable(L *LState) int { |
| 8 | tabmod := L.RegisterModule(TabLibName, tableFuncs) |
| 9 | L.Push(tabmod) |
| 10 | return 1 |
| 11 | } |
| 12 | |
| 13 | var tableFuncs = map[string]LGFunction{ |
| 14 | "getn": tableGetN, |
nothing calls this directly
no test coverage detected
searching dependent graphs…