From f9062ff2048161b0bac9feb98b8fb294d90be265 Mon Sep 17 00:00:00 2001 From: Marvin Schlegel Date: Thu, 13 Jun 2024 09:29:17 +0200 Subject: [PATCH] fix this --- src/Parser/Lexer.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Parser/Lexer.x b/src/Parser/Lexer.x index cb0d075..1fa8ac9 100644 --- a/src/Parser/Lexer.x +++ b/src/Parser/Lexer.x @@ -57,7 +57,7 @@ tokens :- "super" { \_ -> SUPER} "switch" { \_ -> SWITCH} "synchronized" { \_ -> SYNCHRONIZED} - "this" { \_ -> THIS} + -- "this" { \_ -> THIS} recognize "this" as normal identifier "throw" { \_ -> THROW} "throws" { \_ -> THROWS} "transient" { \_ -> TRANSIENT}