blob: 77f2492a46a24f7d38c64cfbbf9243cd3cdafe53 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
use crate::errors::{report, Error};
use crate::scanner::{self, Token};
// Run some Lox code and print it to stdout
pub fn run(code: &str) {
let chars: Vec<char> = code.chars().collect();
match scanner::scan(&chars) {
Ok(tokens) => print_tokens(tokens),
Err(errors) => report_errors(errors),
}
}
fn print_tokens<'a>(tokens: Vec<Token<'a>>) {
for token in tokens {
println!("{:?}", token);
}
}
fn report_errors(errors: Vec<Error>) {
for error in errors {
report(&error);
}
}
|