| 53 | //Each stack value has an optional typed identifier (ie. x or x:u256) and a YulType |
| 54 | #[derive(Clone, Debug)] |
| 55 | struct StackValue { |
| 56 | typed_identifier: Option<TypedIdentifier>, |
| 57 | yul_type: YulType, |
| 58 | } |
| 59 | |
| 60 | impl From<&TypedIdentifier> for StackValue { |
| 61 | fn from(typed_identifier: &TypedIdentifier) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected