diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-10-02 15:43:29 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-10-02 15:43:29 +0200 |
| commit | 3533268b1f7a31581e7b8f44dff6d4f553ef348f (patch) | |
| tree | 3fee21d2df7ce173131f75f46a1ef040f272ed29 /src/syntax/ast/mod.rs | |
| parent | f8770d2b2a8ac389704897f92f2753398352835b (diff) | |
Refactor parser 🏞
Diffstat (limited to 'src/syntax/ast/mod.rs')
| -rw-r--r-- | src/syntax/ast/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/syntax/ast/mod.rs b/src/syntax/ast/mod.rs new file mode 100644 index 00000000..56ae4134 --- /dev/null +++ b/src/syntax/ast/mod.rs @@ -0,0 +1,9 @@ +//! Abstract syntax tree definition. + +mod expr; +mod lit; +mod tree; + +pub use expr::*; +pub use lit::*; +pub use tree::*; |
