| 161 | //Ex. x = 1234:u256 |
| 162 | #[derive(Clone, PartialEq, Eq, Debug)] |
| 163 | pub struct ExprAssignment { |
| 164 | pub identifiers: Vec<String>, |
| 165 | pub inferred_types: Vec<Option<YulType>>, |
| 166 | pub rhs: Box<Expr>, |
| 167 | } |
| 168 | |
| 169 | //Struct to represent break/continue statement |
| 170 | #[derive(Clone, PartialEq, Eq, Debug)] |
nothing calls this directly
no outgoing calls
no test coverage detected