diff options
Diffstat (limited to 'users/tazjin/rlox/src/main.rs')
-rw-r--r-- | users/tazjin/rlox/src/main.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/users/tazjin/rlox/src/main.rs b/users/tazjin/rlox/src/main.rs index 13a5748187ad..e3bc2783150c 100644 --- a/users/tazjin/rlox/src/main.rs +++ b/users/tazjin/rlox/src/main.rs @@ -5,9 +5,6 @@ use std::io::Write; use std::process; mod bytecode; -mod errors; -mod parser; -mod scanner; mod treewalk; fn main() { @@ -16,9 +13,3 @@ fn main() { _ => bytecode::main(), } } - -fn report_errors(errors: Vec<errors::Error>) { - for error in errors { - errors::report(&error); - } -} |