(pc int)
| 433 | } |
| 434 | |
| 435 | func (f *function) jumpControl(pc int) *instruction { |
| 436 | if pc >= 1 && testTMode(f.f.code[pc-1].opCode()) { |
| 437 | return &f.f.code[pc-1] |
| 438 | } |
| 439 | return &f.f.code[pc] |
| 440 | } |
| 441 | |
| 442 | func (f *function) needValue(list int) bool { |
| 443 | f.assert(f.isJumpListWalkable(list)) |
no test coverage detected