提交 73cd2cdd 编写于 作者: V Vidar Holen

Also warn about missing 'then' before 'else'

上级 a01862bc
......@@ -1672,7 +1672,7 @@ readIfPart = do
allspacing
condition <- readTerm
ifNextToken (g_Fi <|> g_Elif) $
ifNextToken (g_Fi <|> g_Elif <|> g_Else) $
parseProblemAt pos ErrorC 1049 "Did you forget the 'then' for this 'if'?"
called "then clause" $ do
......@@ -1695,7 +1695,7 @@ readElifPart = called "elif clause" $ do
allspacing
condition <- readTerm
ifNextToken (g_Fi <|> g_Elif) $
ifNextToken (g_Fi <|> g_Elif <|> g_Else) $
parseProblemAt pos ErrorC 1049 "Did you forget the 'then' for this 'elif'?"
g_Then
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册