| 202 | //Ex. x:u256 := 1234 |
| 203 | #[derive(Clone, PartialEq, Eq, Debug)] |
| 204 | pub struct ExprDeclareVariable { |
| 205 | pub typed_identifiers: Vec<TypedIdentifier>, |
| 206 | pub rhs: Option<Box<Expr>>, |
| 207 | } |
| 208 | |
| 209 | //Struct to represent if statement |
| 210 | //Ex. |
nothing calls this directly
no outgoing calls
no test coverage detected