Fix q-ws rule in KQL grammar

This commit is contained in:
Lars Willighagen 2025-01-05 12:49:18 +01:00
parent 757eb5517a
commit 26536e1042
1 changed files with 1 additions and 1 deletions

View File

@ -127,5 +127,5 @@ comparison := accessor q-ws* matcher-operator q-ws* ($type | $string | $number |
accessor := "val(" q-ws* $integer q-ws* ")" | "prop(" q-ws* $string q-ws* ")" | "name(" q-ws* ")" | "tag(" q-ws* ")" | "values(" q-ws* ")" | "props(" q-ws* ")" | $string
matcher-operator := "=" | "!=" | ">" | "<" | ">=" | "<=" | "^=" | "$=" | "*="
q-ws := $plain-node-space
q-ws := $node-space
```