* }}} */ * table operations {{{ */
(tb *LTable, key LValue)
| 1897 | /* table operations {{{ */ |
| 1898 | |
| 1899 | func (ls *LState) RawGet(tb *LTable, key LValue) LValue { |
| 1900 | return tb.RawGet(key) |
| 1901 | } |
| 1902 | |
| 1903 | func (ls *LState) RawGetInt(tb *LTable, key int) LValue { |
| 1904 | return tb.RawGetInt(key) |