(l *State, ci *callInfo)
| 953 | } |
| 954 | |
| 955 | func newFrame(l *State, ci *callInfo) (frame []value, closure *luaClosure, constants []value) { |
| 956 | // TODO l.assert(ci == l.callInfo) |
| 957 | frame = ci.frame |
| 958 | closure, _ = l.stack[ci.function].(*luaClosure) |
| 959 | constants = closure.prototype.constants |
| 960 | return |
| 961 | } |
| 962 | |
| 963 | func expectNext(ci *callInfo, expected opCode) instruction { |
| 964 | i := ci.step() // go to next instruction |
no outgoing calls
no test coverage detected
searching dependent graphs…