diff options
Diffstat (limited to 'users/tazjin/rlox/src/errors.rs')
-rw-r--r-- | users/tazjin/rlox/src/errors.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/users/tazjin/rlox/src/errors.rs b/users/tazjin/rlox/src/errors.rs index 484b06bdf6ab..4f173d016039 100644 --- a/users/tazjin/rlox/src/errors.rs +++ b/users/tazjin/rlox/src/errors.rs @@ -6,7 +6,6 @@ pub enum ErrorKind { ExpectedExpression(String), ExpectedSemicolon, ExpectedClosingBrace, - ExpectedVariableName, ExpectedToken(&'static str), TypeError(String), UndefinedVariable(String), |