1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cases:
- note: all
rego: |
package test
# One item
x = {1}
# Multiple items
y = [
2.5, "abc", [ 4, `raw`, # Trailing comma
],
# Empty array
[],
# Nested empty
[[[[[]]]]]
]
num_expressions: 17
num_statements: 0
num_queries: 0
policy:
- spec:
head:
compr:
refr:
var: x
eidx: 1
assign:
span: = {1}
op: "="
value:
set:
- number: 1
eidx: 2
eidx: 3
bodies: --skip--
- spec:
head:
compr:
refr:
var: y
eidx: 4
assign:
op: "="
value:
array:
- number: 2.5
eidx: 5
- string: abc
eidx: 6
- array:
- number: 4
eidx: 7
- rawstring: raw
eidx: 8
eidx: 9
- array:
eidx: 10
- array:
- array:
- array:
- array:
- array:
eidx: 11
eidx: 12
eidx: 13
eidx: 14
eidx: 15
eidx: 16
bodies:
- note: trailing-comma
rego: |
package test
x = [1,]
y = [1,2
,]
num_expressions: 8
num_statements: 0
num_queries: 0
policy:
- spec:
head:
compr:
refr:
var: x
eidx: 1
assign:
op: "="
value:
array:
span: "[1,]"
values:
- number: 1
eidx: 2
eidx: 3
bodies:
- spec:
head:
compr:
refr:
var: y
eidx: 4
assign:
op: "="
value:
array:
span: "[1,2\n,]"
values:
- number: 1
eidx: 5
- number: 2
eidx: 6
eidx: 7
bodies:
- note: no-comma
rego: |
package test
x = [1 2]
error: expecting `]` while parsing array
- note: two-trailing-commas
rego: |
package test
x = [1,2,,]
error: expecting expression
- note: unclosed
rego: |
package test
x = [ 1
error: expecting `]` while parsing array