(proto *FunctionProto)
| 1625 | } |
| 1626 | |
| 1627 | func (ls *LState) NewFunctionFromProto(proto *FunctionProto) *LFunction { |
| 1628 | return newLFunctionL(proto, ls.Env, int(proto.NumUpvalues)) |
| 1629 | } |
| 1630 | |
| 1631 | func (ls *LState) NewUserData() *LUserData { |
| 1632 | return &LUserData{ |
nothing calls this directly
no test coverage detected