| 141 | } |
| 142 | |
| 143 | type LTable struct { |
| 144 | Metatable LValue |
| 145 | |
| 146 | array []LValue |
| 147 | dict map[LValue]LValue |
| 148 | strdict map[string]LValue |
| 149 | keys []LValue |
| 150 | k2i map[LValue]int |
| 151 | } |
| 152 | |
| 153 | func (tb *LTable) String() string { return fmt.Sprintf("table: %p", tb) } |
| 154 | func (tb *LTable) Type() LValueType { return LTTable } |
nothing calls this directly
no outgoing calls
no test coverage detected