Add function definitions to ast
This commit is contained in:
parent
5466f7afbf
commit
36e40d254d
3 changed files with 100 additions and 0 deletions
|
|
@ -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::*;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue