...
1# DO NOT EDIT; generated by go run testdata/gen.go
2#
3raw: true
4-- in.cue --
5{a: {b: []}, c: a.b, d: a["b"]}
6-- out/def --
7a: {
8 b: []
9}
10c: []
11d: []
12-- out/export --
13a: {
14 b: []
15}
16c: []
17d: []
18-- out/yaml --
19a:
20 b: []
21c: []
22d: []
23-- out/json --
24{"a":{"b":[]},"c":[],"d":[]}
25-- out/compile --
26--- in.cue
27{
28 {
29 a: {
30 b: []
31 }
32 c: ć0;ać.b
33 d: ć0;ać["b"]
34 }
35}
36-- out/eval/stats --
37Leaks: 0
38Freed: 5
39Reused: 2
40Allocs: 3
41Retain: 0
42
43Unifications: 5
44Conjuncts: 8
45Disjuncts: 5
46-- out/eval --
47(struct){
48 a: (struct){
49 b: (#list){
50 }
51 }
52 c: (#list){
53 }
54 d: (#list){
55 }
56}
View as plain text