| 192 | // |
| 193 | #[derive(Clone, PartialEq, Eq, Debug)] |
| 194 | pub struct ExprRepeat { |
| 195 | pub interior_block: Box<ExprBlock>, |
| 196 | pub iterations: u32, |
| 197 | } |
| 198 | |
| 199 | //Struct to represent variable declaration |
| 200 | //Ex. let x := 1234 |
nothing calls this directly
no outgoing calls
no test coverage detected