| 201 | func (ls *LState) Type() LValueType { return LTThread } |
| 202 | |
| 203 | type LUserData struct { |
| 204 | Value interface{} |
| 205 | Env *LTable |
| 206 | Metatable LValue |
| 207 | } |
| 208 | |
| 209 | func (ud *LUserData) String() string { return fmt.Sprintf("userdata: %p", ud) } |
| 210 | func (ud *LUserData) Type() LValueType { return LTUserData } |
nothing calls this directly
no outgoing calls
no test coverage detected