diff options
author | Vincent Ambo <mail@tazj.in> | 2020-11-27T17·16+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-11-27T17·29+0000 |
commit | 46c6906aaa4ca0fa16a1fbbcc5993d621d2fb7a7 (patch) | |
tree | 3812583711288e8b2b566dda219d4a933501f397 /users/tazjin/rlox/src/interpreter.rs | |
parent | 3f6b88bce231cfdc00fc7521fcb83d7114ad9142 (diff) |
chore(tazjin/rlox): Wire scanner to interpreter to reduce warnings r/1927
... they're just noisy at the moment. This isn't complete because it doesn't thread through scanner errors. Change-Id: I0f75d2b20fa3f57be1af5d1d8aa8059856855825 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2162 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
Diffstat (limited to 'users/tazjin/rlox/src/interpreter.rs')
-rw-r--r-- | users/tazjin/rlox/src/interpreter.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/users/tazjin/rlox/src/interpreter.rs b/users/tazjin/rlox/src/interpreter.rs index 6a7687c2685e..2aff971f09a5 100644 --- a/users/tazjin/rlox/src/interpreter.rs +++ b/users/tazjin/rlox/src/interpreter.rs @@ -1,4 +1,8 @@ +use crate::scanner; + // Run some Lox code and print it to stdout -pub fn run(_code: &str) { +pub fn run(code: &str) { + let chars: Vec<char> = code.chars().collect(); + let _tokens = scanner::scan(&chars); println!("no interpreter yet, sorry") } |