(proto *FunctionProto)
| 1412 | } |
| 1413 | |
| 1414 | func (ls *LState) NewFunctionFromProto(proto *FunctionProto) *LFunction { |
| 1415 | return newLFunctionL(proto, ls.Env, int(proto.NumUpvalues)) |
| 1416 | } |
| 1417 | |
| 1418 | func (ls *LState) NewUserData() *LUserData { |
| 1419 | return &LUserData{ |
nothing calls this directly
no test coverage detected