about summary refs log tree commit diff
path: root/users/grfn/achilles/src/parser/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'users/grfn/achilles/src/parser/mod.rs')
-rw-r--r--users/grfn/achilles/src/parser/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/users/grfn/achilles/src/parser/mod.rs b/users/grfn/achilles/src/parser/mod.rs
index 3e0081bd39..e088cbca10 100644
--- a/users/grfn/achilles/src/parser/mod.rs
+++ b/users/grfn/achilles/src/parser/mod.rs
@@ -6,6 +6,7 @@ use nom::{alt, char, complete, do_parse, eof, many0, named, separated_list0, tag
 pub(crate) mod macros;
 mod expr;
 mod type_;
+mod util;
 
 use crate::ast::{Arg, Decl, Fun, Ident};
 pub use expr::expr;