1
1
mirror of https://github.com/github/semantic.git synced 2024-12-19 04:41:47 +03:00

🔥 an obsolete comment.

This commit is contained in:
Rob Rix 2017-08-14 15:13:34 -04:00
parent cd25018e40
commit 525c31694a

View File

@ -282,7 +282,6 @@ comparisonOperator = symbol ComparisonOperator >>= \ loc -> children (expression
<|> makeTerm loc <$ symbol AnonLAngleRAngle <*> (Expression.Not <$> (makeTerm <$> location <*> (Expression.Equal lexpression <$> expressions)))
<|> makeTerm loc <$ symbol AnonNot <*> (Expression.Not <$> (makeTerm <$> location <*> (Expression.Member lexpression <$> expressions)))
<|> makeTerm loc <$ symbol AnonIn <*> (Expression.Member lexpression <$> expressions)
-- source is used here to push the cursor to the next node to enable matching against `AnonNot`
<|> token AnonIs *> (symbol AnonNot *> (makeTerm loc <$> Expression.Not <$> (makeTerm <$> location <*> (Expression.Equal lexpression <$> expressions)))
<|> (makeTerm loc <$> Expression.Equal lexpression <$> expressions))