diff options
| author | Mel <einebeere@gmail.com> | 2021-10-23 22:01:52 +0200 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2021-10-23 22:01:52 +0200 |
| commit | 8a6eb35a900081967db16d313ab7ed470de6570f (patch) | |
| tree | d58dd702d8a742c7554545bc4e291480649e3663 /src/parse/ast/mod.rs | |
| parent | da14afd74e1659af6ce4553360ac5dd0ce933db8 (diff) | |
| download | rabbithole-8a6eb35a900081967db16d313ab7ed470de6570f.tar.zst rabbithole-8a6eb35a900081967db16d313ab7ed470de6570f.zip | |
Loop expressions and concrete walker errors.
Diffstat (limited to 'src/parse/ast/mod.rs')
| -rw-r--r-- | src/parse/ast/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/ast/mod.rs b/src/parse/ast/mod.rs index 93944b2..7d0b58b 100644 --- a/src/parse/ast/mod.rs +++ b/src/parse/ast/mod.rs @@ -3,8 +3,8 @@ use std::fmt::Display; use self::statement::Statement; pub mod expression; -pub mod statement; pub mod nodes; +pub mod statement; #[derive(Debug)] pub struct Program { |
