| 109 | // let zero:u32 := 0:u32 |
| 110 | #[derive(Clone, PartialEq, Eq, Debug)] |
| 111 | pub struct ExprVariableReference { |
| 112 | pub identifier: String, |
| 113 | pub inferred_type: Option<YulType>, |
| 114 | } |
| 115 | |
| 116 | //Struct to represent a switch expression |
| 117 | //Ex. |
nothing calls this directly
no outgoing calls
no test coverage detected