chore: remove leftover

This commit is contained in:
Leonardo de Moura 2020-09-26 16:10:29 -07:00
parent 6892a957d6
commit ee4dc452ac

View file

@ -78,9 +78,7 @@ withPosition fun pos₁ =>
("; "
-- check indentation
>> checkColGe pos₁.column "do-elements must be indented"
-- no black lines between do-elements.
-- >> checkLineLe (pos₂.line+1) "no blank lines between do-elements"
>> notFollowedByCommandToken)
>> notFollowedByCommandToken)
>> optional (try ("; " >> notFollowedByTermToken >> notFollowedBy (ident <|> numLit <|> strLit <|> charLit <|> nameLit)))
def doSeqBracketed := parser! "{" >> sepBy1 doElemParser "; " true >> "}"
def doSeq := doSeqBracketed <|> doSeqIndent