Determine if this instruction ends execution of its basic block.
| 580 | |
| 581 | // Determine if this instruction ends execution of its basic block. |
| 582 | bool IsBasicBlockEnd() const { |
| 583 | return IsBranch() || IsReturn() || Opcode() == THROW; |
| 584 | } |
| 585 | |
| 586 | // Determine if this instruction is an invoke. |
| 587 | bool IsInvoke() const { |
nothing calls this directly
no outgoing calls
no test coverage detected