X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compiler%2Fparser%2FLexer.x;h=d350f11ee4e7522a4f299ba203bd96775d341063;hp=b3502b8664de9fa17f9328192710bed474bec982;hb=987cb6856527112e9addf397a25bec8b6e6aa66b;hpb=2f41cb69519a137eb1bacf7bc1801329e00b9e5d diff --git a/compiler/parser/Lexer.x b/compiler/parser/Lexer.x index b3502b8..d350f11 100644 --- a/compiler/parser/Lexer.x +++ b/compiler/parser/Lexer.x @@ -2065,14 +2065,15 @@ alternativeLayoutRuleToken t (_, _, _) -> return t isALRopen :: Token -> Bool -isALRopen ITcase = True -isALRopen ITif = True -isALRopen IToparen = True -isALRopen ITobrack = True -isALRopen ITocurly = True +isALRopen ITcase = True +isALRopen ITif = True +isALRopen IToparen = True +isALRopen ITobrack = True +isALRopen ITocurly = True -- GHC Extensions: -isALRopen IToubxparen = True -isALRopen _ = False +isALRopen IToubxparen = True +isALRopen ITparenEscape = True +isALRopen _ = False isALRclose :: Token -> Bool isALRclose ITof = True