Files
regorus/tests/lexer/cases/boolean.yaml
T
Anand Krishnamoorthi cb0b3a1790 Code from github.com/anakrish/rego-rs
Authored by anakrish and mingweishih

Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
2023-02-09 10:56:54 -08:00

11 lines
293 B
YAML

# Copyright (c) Rego-Rs Authors.
# Licensed under the Apache 2.0 license.
cases:
# To Booleans are parsed as identifiers.
# It is up to the parser to handle them as appropriate.
- note: boolean/all
rego: true false
tokens: [ "true", "false", "" ]
kinds: [Ident, Ident, Eof]