(top int)
| 148 | func (ci *callInfo) jump(offset int) { ci.savedPC += pc(offset) } |
| 149 | |
| 150 | func (ci *callInfo) setTop(top int) { |
| 151 | if ci.luaCallInfo != nil { |
| 152 | diff := top - ci.top |
| 153 | ci.frame = ci.frame[:len(ci.frame)+diff] |
| 154 | } |
| 155 | ci.top = top |
| 156 | } |
| 157 | |
| 158 | func (ci *callInfo) frameIndex(stackSlot int) int { |
| 159 | if stackSlot < ci.top-len(ci.frame) || ci.top <= stackSlot { |
no outgoing calls
no test coverage detected