Add function definitions to ast

This commit is contained in:
Joscha 2022-11-19 10:58:34 +01:00
parent 5466f7afbf
commit 36e40d254d
3 changed files with 100 additions and 0 deletions

View file

@ -2,6 +2,7 @@ mod basic;
mod call;
mod expr;
mod field;
mod func_def;
mod lit;
mod table_constr;
mod table_destr;
@ -13,6 +14,7 @@ pub use self::basic::*;
pub use self::call::*;
pub use self::expr::*;
pub use self::field::*;
pub use self::func_def::*;
pub use self::lit::*;
pub use self::table_constr::*;
pub use self::table_destr::*;