Starting visitor again

This commit is contained in:
greg 2019-07-11 10:06:07 -07:00
parent aa705b4eee
commit d043036c61
2 changed files with 8 additions and 0 deletions

View File

@ -34,6 +34,7 @@ mod symbol_table;
mod builtin;
mod reduced_ast;
mod eval;
mod visitor;
mod schala;

View File

@ -0,0 +1,7 @@
use std::error::Error;
pub type VResult<T> = Result<T, Box<dyn Error>>;
pub trait Visitor {
}