(&self)
| 633 | |
| 634 | impl UnaryOperator { |
| 635 | pub fn is_minus(&self) -> bool { |
| 636 | matches!(self.opcode, UnaryOpcode::Minus) |
| 637 | } |
| 638 | |
| 639 | pub fn is_addrof(&self) -> bool { |
| 640 | matches!(self.opcode, UnaryOpcode::AddrOf) |
no outgoing calls
no test coverage detected