()
| 27 | } |
| 28 | |
| 29 | fn main() { |
| 30 | let yul_contracts = read_yul_contracts(); |
| 31 | |
| 32 | //For each contract in Vec of YulFile |
| 33 | for yul_code in yul_contracts { |
| 34 | write_yul_to_masm(yul_code) |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | //Read in all of the Yul contracts from the contracts directory and return a Vec of Yul Files |
| 39 | fn read_yul_contracts() -> Vec<YulFile> { |
nothing calls this directly
no test coverage detected