X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compiler%2Fparser%2FLexer.x;h=00926bd13d87b6a7c0f6db94e008a3c42223bd58;hp=2c98f22725a53cfd850e8ef85e2bf7b0517822b6;hb=609e7ddfb10bc04762b820e70e0487ad6c514c2e;hpb=259cb7dd6b4e9bc7ac6ec4a8ae15947d7fb9b10e diff --git a/compiler/parser/Lexer.x b/compiler/parser/Lexer.x index 2c98f22..00926bd 100644 --- a/compiler/parser/Lexer.x +++ b/compiler/parser/Lexer.x @@ -1998,6 +1998,15 @@ alternativeLayoutRuleToken t setALRContext (ALRLayout expectingOCurly thisCol : context) setNextToken t return (L thisLoc ITocurly) + -- We do the [] cases earlier than in the spec, as we + -- have an actual EOF token + (ITeof, ALRLayout _ _ : ls, _) -> + do setALRContext ls + setNextToken t + return (L thisLoc ITccurly) + (ITeof, _, _) -> + return t + -- the other ITeof case omitted; general case below covers it (ITin, ALRLayout ALRLayoutLet _ : ls, _) | newLine -> do setPendingImplicitTokens [t] @@ -2014,7 +2023,8 @@ alternativeLayoutRuleToken t f ls' = ([], ls') case f ls of (t' : ts, ls') -> - do setPendingImplicitTokens ts + do setALRContext ls' + setPendingImplicitTokens ts setNextToken t return t' _ -> panic "Layout rule: [] when considering newline" @@ -2055,13 +2065,6 @@ alternativeLayoutRuleToken t setPendingImplicitTokens [t] return (L thisLoc ITccurly) -- the other ITwhere case omitted; general case below covers it - -- The first [] case comes before the general case, as we - -- have an actual EOF token - (ITeof, ALRLayout _ _ : ls, _) -> - do setALRContext ls - setNextToken t - return (L thisLoc ITccurly) - -- the other ITeof case omitted; general case below covers it (_, _, _) -> return t isALRopen :: Token -> Bool