We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
!=
1 parent 3baaad9 commit 877a020Copy full SHA for 877a020
internal/filter/parser.peg
@@ -228,10 +228,10 @@ ExistsExpr <- col:(Identifier !Operator !"(" / Identifier &EOF) {
228
/ Operator { // panics when the rule doesn't match
229
return nil, nil
230
}
231
-Negate <- ("!" &Operator / "!" &")" / "!" &[&|] / "!" &EOF) {
+Negate <- ("!" !"=" &Operator / "!" &")" / "!" &[&|] / "!" &EOF) {
232
panic(fmt.Sprintf("unexpected negate operator %q at pos %d", string(c.text), c.pos.col))
233
234
-/ "!"+ {
+/ "!"+ !"=" {
235
ops := string(c.text)
236
if len(ops) > 1 {
237
panic(fmt.Sprintf("unexpected negate operators %q at pos %d", string(c.text), c.pos.col))
0 commit comments