MCPcopy Index your code
hub / github.com/yuin/gopher-lua / LFunction

Struct LFunction

value.go:156–162  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected