Skip to content

Commit

Permalink
Merge pull request #1600 from spechub/extract_list_with_commas
Browse files Browse the repository at this point in the history
Extract list with commas
  • Loading branch information
tillmo committed Mar 15, 2016
2 parents 996ed46 + 6f098ee commit 50d93a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Syntax/Parse_AS_Structured.hs
Original file line number Diff line number Diff line change
Expand Up @@ -389,8 +389,8 @@ minimization lg = do
extraction :: LogicGraph -> AParser st EXTRACTION
extraction lg = do
p <- asKey extractS <|> asKey removeS
is <- many1 (hetIRI lg)
return . ExtractOrRemove (tokStr p == extractS) is $ tokPos p
(is,commas) <- separatedBy (hetIRI lg) commaT
return . ExtractOrRemove (tokStr p == extractS) is $ catRange (p:commas)

filtering :: LogicGraph -> AParser st FILTERING
filtering lg = do
Expand Down

0 comments on commit 50d93a7

Please sign in to comment.