(&mut self)
| 12 | /* if/elif/else compiler; emits JumpIfFalse/Jump and patches branch join targets */ |
| 13 | |
| 14 | pub(super) fn if_stmt(&mut self) { |
| 15 | self.advance(); |
| 16 | self.enter_block(); |
| 17 | self.if_body(); |
| 18 | self.commit_block(); |
| 19 | } |
| 20 | |
| 21 | pub(super) fn if_body(&mut self) { |
| 22 | self.expr(); |
no test coverage detected