Fix q-ws rule in KQL grammar (#463)

This commit is contained in:
Lars Willighagen 2025-01-05 16:35:37 +01:00 committed by GitHub
parent 757eb5517a
commit 72a3c769d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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
```