| 10 | |
| 11 | #[derive(Default)] |
| 12 | struct TypeInferrer { |
| 13 | scoped_variables: HashMap<String, YulType>, |
| 14 | expected_types: Vec<Option<YulType>>, |
| 15 | evaluated_types: Vec<Option<YulType>>, |
| 16 | } |
| 17 | |
| 18 | //FIXME: needs comments still |
| 19 | impl TypeInferrer { |
nothing calls this directly
no outgoing calls
no test coverage detected