| 154 | func (tb *LTable) Type() LValueType { return LTTable } |
| 155 | |
| 156 | type LFunction struct { |
| 157 | IsG bool |
| 158 | Env *LTable |
| 159 | Proto *FunctionProto |
| 160 | GFunction LGFunction |
| 161 | Upvalues []*Upvalue |
| 162 | } |
| 163 | type LGFunction func(*LState) int |
| 164 | |
| 165 | func (fn *LFunction) String() string { return fmt.Sprintf("function: %p", fn) } |
nothing calls this directly
no outgoing calls
no test coverage detected