| 169 | //Struct to represent break/continue statement |
| 170 | #[derive(Clone, PartialEq, Eq, Debug)] |
| 171 | pub struct ExprBreakContinue { |
| 172 | pub identifier: String, |
| 173 | pub rhs: Box<Expr>, |
| 174 | } |
| 175 | |
| 176 | //Struct to represent a for loop |
| 177 | //Ex. |
nothing calls this directly
no outgoing calls
no test coverage detected