Returns true if this instruction is a switch.
| 565 | |
| 566 | // Returns true if this instruction is a switch. |
| 567 | bool IsSwitch() const { |
| 568 | return (kInstructionDescriptors[Opcode()].flags & kSwitch) != 0; |
| 569 | } |
| 570 | |
| 571 | // Returns true if this instruction can throw. |
| 572 | bool IsThrow() const { |
nothing calls this directly
no outgoing calls
no test coverage detected