Files
regorus/tests/lexer/cases/boolean.yaml
Ming-Wei Shih c0972ad2ba Update license to MIT
Signed-off-by: Ming-Wei Shih <mishih@microsoft.com>
2023-02-09 19:40:35 +00:00

11 lines
292 B
YAML

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT 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]