Files
revive/crates/yul/src/lib.rs
T
xermicus 903cbd7159 YUL tree visitor interface (#369)
- Implement the visitor interface. This simplifies working with the AST,
for example transformations into other IRs or collecting and analyzing
various statistics.
- Switch the explorer to use the visitor interface.
- Add the reciprocal function name conversion for function names.
- Some drive-by cosmetic fixes.

---------

Signed-off-by: xermicus <bigcyrill@hotmail.com>
2025-08-10 00:08:25 +02:00

7 lines
96 B
Rust

//! The Yul IR compiling tools.
pub mod error;
pub mod lexer;
pub mod parser;
pub mod visitor;