(slot int)
| 143 | func (ci *callInfo) isLua() bool { return ci.luaCallInfo != nil } |
| 144 | |
| 145 | func (ci *callInfo) stackIndex(slot int) int { return ci.top - len(ci.frame) + slot } |
| 146 | func (ci *callInfo) base() int { return ci.top - len(ci.frame) } |
| 147 | func (ci *callInfo) skip() { ci.savedPC++ } |
| 148 | func (ci *callInfo) jump(offset int) { ci.savedPC += pc(offset) } |
no outgoing calls
no test coverage detected