()
| 203 | } |
| 204 | |
| 205 | func (ci *luaCallInfo) step() instruction { |
| 206 | i := ci.code[ci.savedPC] |
| 207 | ci.savedPC++ |
| 208 | return i |
| 209 | } |
| 210 | |
| 211 | func (l *State) newLuaClosure(p *prototype) *luaClosure { |
| 212 | return &luaClosure{prototype: p, upValues: make([]*upValue, len(p.upValues))} |
no outgoing calls
no test coverage detected