| 210 | func (ud *LUserData) Type() LValueType { return LTUserData } |
| 211 | |
| 212 | type LChannel chan LValue |
| 213 | |
| 214 | func (ch LChannel) String() string { return fmt.Sprintf("channel: %p", ch) } |
| 215 | func (ch LChannel) Type() LValueType { return LTChannel } |
no outgoing calls
no test coverage detected