* }}} */ * metatable operations {{{ */
(obj LValue)
| 2118 | /* metatable operations {{{ */ |
| 2119 | |
| 2120 | func (ls *LState) GetMetatable(obj LValue) LValue { |
| 2121 | return ls.metatable(obj, false) |
| 2122 | } |
| 2123 | |
| 2124 | func (ls *LState) SetMetatable(obj LValue, mt LValue) { |
| 2125 | switch mt.(type) { |
no test coverage detected