diff options
Diffstat (limited to 'src/parser.rs')
-rw-r--r-- | src/parser.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.rs b/src/parser.rs index ef7e28d..917df66 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -92,6 +92,7 @@ pub fn parse_str(input: &str) -> Result<Expression, peg::error::ParseError<peg:: } /// Parses a Nim-like language into an AST. +#[allow(unused_variables)] pub fn parse_file(path: &str) -> Vec<Expression> { todo!(); } |