(pc int)
| 414 | } |
| 415 | |
| 416 | func (f *function) jump(pc int) int { |
| 417 | f.assert(f.isJumpListWalkable(pc)) |
| 418 | if offset := f.f.code[pc].sbx(); offset != noJump { |
| 419 | return pc + 1 + offset |
| 420 | } |
| 421 | return noJump |
| 422 | } |
| 423 | |
| 424 | func (f *function) isJumpListWalkable(list int) bool { |
| 425 | if list == noJump { |
no test coverage detected