RawGetValue pushes onto the stack value table[p] where table is the value at index on the stack, and p is a light userdata. The access is raw, as it doesn't invoke metamethods. http://www.lua.org/manual/5.2/manual.html#lua_rawgetp
(index int, p interface{})
| 1023 | // |
| 1024 | // http://www.lua.org/manual/5.2/manual.html#lua_rawgetp |
| 1025 | func (l *State) RawGetValue(index int, p interface{}) { |
| 1026 | t := l.indexToValue(index).(*table) |
| 1027 | l.apiPush(t.at(p)) |
| 1028 | } |
| 1029 | |
| 1030 | // CreateTable creates a new empty table and pushes it onto the stack. |
| 1031 | // arrayCount is a hint for how many elements the table will have as a |
nothing calls this directly
no test coverage detected