Add ast_visitor mod

This commit is contained in:
greg 2018-11-17 02:09:10 -08:00
parent 0af6fed505
commit e00948cad9
2 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,2 @@
use ast::*;

View File

@ -33,6 +33,7 @@ mod source_map;
mod builtin;
mod tokenizing;
mod ast;
mod ast_visitor;
mod parsing;
mod symbol_table;
mod typechecking;