| 152 | //Struct to represent a block, consisting of a Vec of expressions |
| 153 | #[derive(Clone, PartialEq, Eq, Debug)] |
| 154 | pub struct ExprBlock { |
| 155 | pub exprs: Vec<Expr>, |
| 156 | } |
| 157 | |
| 158 | //Struct to represent variable assignment |
| 159 | //Ex. x = 1234 |
nothing calls this directly
no outgoing calls
no test coverage detected