RawGet is similar to GetTable, but does a raw access (without metamethods). http://www.lua.org/manual/5.2/manual.html#lua_rawget
(index int)
| 1003 | // |
| 1004 | // http://www.lua.org/manual/5.2/manual.html#lua_rawget |
| 1005 | func (l *State) RawGet(index int) { |
| 1006 | t := l.indexToValue(index).(*table) |
| 1007 | l.stack[l.top-1] = t.at(l.stack[l.top-1]) |
| 1008 | } |
| 1009 | |
| 1010 | // RawGetInt pushes onto the stack the value table[key] where table is the |
| 1011 | // value at index on the stack. The access is raw, as it doesn't invoke |
no test coverage detected