mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
Authored by anakrish and mingweishih Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
11 lines
418 B
YAML
11 lines
418 B
YAML
cases:
|
|
# Keywords are parsed as identifiers.
|
|
# It is up to the parser to handle them as appropriate.
|
|
- note: keywords/all
|
|
rego: as default else false import package not null some true with
|
|
tokens: [ "as", "default", "else", "false", "import",
|
|
"package", "not", "null", "some", "true", "with",
|
|
"" ]
|
|
kinds: [Ident, Ident, Ident, Ident, Ident, Ident, Ident, Ident,
|
|
Ident, Ident, Ident, Eof]
|