diff options
Diffstat (limited to 'users/tazjin/rlox/src/bytecode/errors.rs')
-rw-r--r-- | users/tazjin/rlox/src/bytecode/errors.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/users/tazjin/rlox/src/bytecode/errors.rs b/users/tazjin/rlox/src/bytecode/errors.rs index 4d6daff0f3f0..c6b86172f86d 100644 --- a/users/tazjin/rlox/src/bytecode/errors.rs +++ b/users/tazjin/rlox/src/bytecode/errors.rs @@ -8,6 +8,7 @@ pub enum ErrorKind { UnterminatedString, ExpectedToken(&'static str), InternalError(&'static str), + TypeError(String), } #[derive(Debug)] |