* }}} */ * LFunction {{{ */
(proto *FunctionProto, env *LTable, nupvalue int)
| 153 | /* LFunction {{{ */ |
| 154 | |
| 155 | func newLFunctionL(proto *FunctionProto, env *LTable, nupvalue int) *LFunction { |
| 156 | return &LFunction{ |
| 157 | IsG: false, |
| 158 | Env: env, |
| 159 | |
| 160 | Proto: proto, |
| 161 | GFunction: nil, |
| 162 | Upvalues: make([]*Upvalue, nupvalue), |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | func newLFunctionG(gfunc LGFunction, env *LTable, nupvalue int) *LFunction { |
| 167 | return &LFunction{ |
no outgoing calls
no test coverage detected
searching dependent graphs…