()
| 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) } |
| 149 | |
| 150 | func (ci *callInfo) setTop(top int) { |
no outgoing calls
no test coverage detected