diff options
| author | Mel <einebeere@gmail.com> | 2021-10-21 23:46:01 +0200 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2021-10-21 23:46:01 +0200 |
| commit | cff714c07e5e2c0f11c121504500a554d60c08cc (patch) | |
| tree | 6c9e98696530b2661343942948b9f1a50a8665e7 /src/parse/ast/mod.rs | |
| parent | a4980b8dbf1394c2b302f1de7c72d2264426b86e (diff) | |
| download | rabbithole-cff714c07e5e2c0f11c121504500a554d60c08cc.tar.zst rabbithole-cff714c07e5e2c0f11c121504500a554d60c08cc.zip | |
Implement program walking.
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 257675f..93944b2 100644 --- a/src/parse/ast/mod.rs +++ b/src/parse/ast/mod.rs @@ -4,7 +4,7 @@ use self::statement::Statement; pub mod expression; pub mod statement; -pub mod value; +pub mod nodes; #[derive(Debug)] pub struct Program { |
