Table pushes onto the stack the value table[top], where table is the value at index, and top is the value at the top of the stack. This function pops the key from the stack, putting the resulting value in its place. As in Lua, this function may trigger a metamethod for the __index event. http://ww
(index int)
| 1418 | // |
| 1419 | // http://www.lua.org/manual/5.2/manual.html#lua_gettable |
| 1420 | func (l *State) Table(index int) { |
| 1421 | l.stack[l.top-1] = l.tableAt(l.indexToValue(index), l.stack[l.top-1]) |
| 1422 | } |
| 1423 | |
| 1424 | // PushValue pushes a copy of the element at index onto the stack. |
| 1425 | // |
nothing calls this directly
no test coverage detected