X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compiler%2Fparser%2FLexer.x;h=316f21f1e9a9368082e73207a421aad51703f437;hp=856c2989af4fb722e645ff94a356d11d97e7aa97;hb=84923cc7de2a93c22a2f72daf9ac863959efae13;hpb=3ded6e65b730c2b5eb9a9519448bbcd905c5d7fa diff --git a/compiler/parser/Lexer.x b/compiler/parser/Lexer.x index 856c298..316f21f 100644 --- a/compiler/parser/Lexer.x +++ b/compiler/parser/Lexer.x @@ -389,9 +389,9 @@ data Token | ITdata | ITdefault | ITderiving + | ITderived | ITdo | ITelse - | ITfor | IThiding | ITif | ITimport @@ -544,7 +544,7 @@ isSpecial :: Token -> Bool -- not as a keyword. isSpecial ITas = True isSpecial IThiding = True -isSpecial ITfor = True +isSpecial ITderived = True isSpecial ITqualified = True isSpecial ITforall = True isSpecial ITexport = True @@ -576,9 +576,9 @@ reservedWordsFM = listToUFM $ ( "data", ITdata, 0 ), ( "default", ITdefault, 0 ), ( "deriving", ITderiving, 0 ), + ( "derived", ITderived, 0 ), ( "do", ITdo, 0 ), ( "else", ITelse, 0 ), - ( "for", ITfor, 0 ), ( "hiding", IThiding, 0 ), ( "if", ITif, 0 ), ( "import", ITimport, 0 ),