mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
32 lines
547 B
YAML
32 lines
547 B
YAML
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
|
|
cases:
|
|
- note: index-syntax
|
|
data: {}
|
|
modules:
|
|
- |
|
|
package test
|
|
x[a] {
|
|
a = ["hello", "world"][_]
|
|
}
|
|
query: data.test
|
|
want_result:
|
|
x:
|
|
set!: ["hello", "world"]
|
|
|
|
- note: special-case-field-syntax
|
|
data: {}
|
|
modules:
|
|
- |
|
|
package test
|
|
x.a {
|
|
a = ["hello", "world"][_]
|
|
true
|
|
}
|
|
query: data.test
|
|
want_result:
|
|
x:
|
|
set!: ["a"]
|
|
|