(op opCode, a, b, c int)
| 394 | } |
| 395 | |
| 396 | func (f *function) conditionalJump(op opCode, a, b, c int) int { |
| 397 | f.EncodeABC(op, a, b, c) |
| 398 | return f.Jump() |
| 399 | } |
| 400 | |
| 401 | func (f *function) fixJump(pc, dest int) { |
| 402 | f.assert(f.isJumpListWalkable(pc)) |
no test coverage detected