Struct to represent a YulFile
| 5 | #[derive(Debug)] |
| 6 | //Struct to represent a YulFile |
| 7 | pub struct YulFile { |
| 8 | pub file_path: PathBuf, |
| 9 | pub file_contents: String, |
| 10 | } |
| 11 | |
| 12 | //Enum to represent Yul Expressions |
| 13 | #[derive(Clone, PartialEq, Eq, Debug)] |
nothing calls this directly
no outgoing calls
no test coverage detected