feat: add ASTVisitor

This commit is contained in:
Shunsuke Shibayama 2023-11-07 19:42:11 +09:00
parent e4a3bc1720
commit d3dfaf8c31
3 changed files with 154 additions and 1 deletions

View file

@ -13,5 +13,7 @@ pub mod lex;
pub mod parse;
pub mod token;
pub mod typespec;
pub mod visitor;
pub use parse::{Parser, ParserRunner};
pub use visitor::ASTVisitor;