()
| 522 | } |
| 523 | |
| 524 | func (j JMPF) String() string { |
| 525 | flags := strings.Join(j.Flags, "") |
| 526 | result := fmt.Sprintf("JMP%s %s", flags, j.JumpLoc) |
| 527 | return result |
| 528 | } |
| 529 | |
| 530 | func (j JMP) Size() int { |
| 531 | return 2 |
nothing calls this directly
no outgoing calls
no test coverage detected