@@ -230,10 +230,6 @@ expr' = (try partialExpr
230
230
<|> matchExpr
231
231
<|> matchAllLambdaExpr
232
232
<|> matchLambdaExpr
233
- <|> nextMatchAllExpr
234
- <|> nextMatchExpr
235
- <|> nextMatchAllLambdaExpr
236
- <|> nextMatchLambdaExpr
237
233
<|> matcherExpr
238
234
<|> matcherDFSExpr
239
235
<|> seqExpr
@@ -329,18 +325,6 @@ matchAllLambdaExpr = keywordMatchAllLambda >> MatchAllLambdaExpr <$> expr <*> ((
329
325
matchLambdaExpr :: Parser EgisonExpr
330
326
matchLambdaExpr = keywordMatchLambda >> MatchLambdaExpr <$> expr <*> matchClauses
331
327
332
- nextMatchAllExpr :: Parser EgisonExpr
333
- nextMatchAllExpr = keywordNextMatchAll >> NextMatchAllExpr <$> expr <*> expr <*> matchClause
334
-
335
- nextMatchExpr :: Parser EgisonExpr
336
- nextMatchExpr = keywordNextMatch >> NextMatchExpr <$> expr <*> expr <*> matchClauses
337
-
338
- nextMatchAllLambdaExpr :: Parser EgisonExpr
339
- nextMatchAllLambdaExpr = keywordNextMatchAllLambda >> NextMatchAllLambdaExpr <$> expr <*> matchClause
340
-
341
- nextMatchLambdaExpr :: Parser EgisonExpr
342
- nextMatchLambdaExpr = keywordNextMatchLambda >> NextMatchLambdaExpr <$> expr <*> matchClauses
343
-
344
328
matchClauses :: Parser [MatchClause ]
345
329
matchClauses = braces $ sepEndBy matchClause whiteSpace
346
330
@@ -900,10 +884,6 @@ keywordMatchAll = reserved "match-all"
900
884
keywordMatchAllLambda = reserved " match-all-lambda"
901
885
keywordMatch = reserved " match"
902
886
keywordMatchLambda = reserved " match-lambda"
903
- keywordNextMatchAll = reserved " next-match-all"
904
- keywordNextMatchAllLambda = reserved " next-match-all-lambda"
905
- keywordNextMatch = reserved " next-match"
906
- keywordNextMatchLambda = reserved " next-match-lambda"
907
887
keywordMatcher = reserved " matcher"
908
888
keywordMatcherDFS = reserved " matcher-dfs"
909
889
keywordDo = reserved " do"
0 commit comments