(yul: &str)
| 343 | use super::*; |
| 344 | |
| 345 | fn parse_to_tree(yul: &str) -> String { |
| 346 | let ast = parse_yul_syntax(yul); |
| 347 | let ast_with_inferred_types = infer_types(&ast); |
| 348 | expressions_to_tree(&ast_with_inferred_types) |
| 349 | } |
| 350 | |
| 351 | #[test] |
| 352 | fn parse_var_declaration() { |
nothing calls this directly
no test coverage detected