diff options
author | Vincent Ambo <mail@tazj.in> | 2020-11-28T17·20+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-11-28T17·26+0000 |
commit | 36cf7bef24bbd5ffccc8bac47a8c4d10dd5a265c (patch) | |
tree | ccec3463fde0fc088f575d534745a1648844578e /users/tazjin/rlox/src/errors.rs | |
parent | af793325c03d88add6efbcc9425a3db488f2cff9 (diff) |
refactor(tazjin/rlox): Thread through scanner errors r/1956
... and show them to users, very crudely. Change-Id: If4491b14db1124313f6ab7e5fbfdce9fea501d11 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2193 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
Diffstat (limited to 'users/tazjin/rlox/src/errors.rs')
-rw-r--r-- | users/tazjin/rlox/src/errors.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/users/tazjin/rlox/src/errors.rs b/users/tazjin/rlox/src/errors.rs index 306cfec4ca34..bab3f4667a74 100644 --- a/users/tazjin/rlox/src/errors.rs +++ b/users/tazjin/rlox/src/errors.rs @@ -10,6 +10,6 @@ pub struct Error { pub kind: ErrorKind, } -pub fn report(loc: &str, err: &Error) { - eprintln!("[line {}] Error {}: {:?}", err.line, loc, err.kind); +pub fn report(err: &Error) { + eprintln!("[line {}] Error: {:?}", err.line, err.kind); } |