...
1# DO NOT EDIT; generated by go run testdata/gen.go
2#
3#evalPartial
4-- in.cue --
5a: b.c.d
6b: c: {d: 3}
7c: {c: d.d}
8d: {d: 2}
9-- out/def --
10a: 3
11b: {
12 c: {
13 d: 3
14 }
15}
16c: {
17 c: 2
18}
19d: {
20 d: 2
21}
22-- out/export --
23a: 3
24b: {
25 c: {
26 d: 3
27 }
28}
29c: {
30 c: 2
31}
32d: {
33 d: 2
34}
35-- out/yaml --
36a: 3
37b:
38 c:
39 d: 3
40c:
41 c: 2
42d:
43 d: 2
44-- out/json --
45{"a":3,"b":{"c":{"d":3}},"c":{"c":2},"d":{"d":2}}
46-- out/legacy-debug --
47<0>{a: 3, b: <1>{c: <2>{d: 3}}, c: <3>{c: 2}, d: <4>{d: 2}}
48-- out/compile --
49--- in.cue
50{
51 a: 〈0;b〉.c.d
52 b: {
53 c: {
54 d: 3
55 }
56 }
57 c: {
58 c: 〈1;d〉.d
59 }
60 d: {
61 d: 2
62 }
63}
64-- out/eval/stats --
65Leaks: 0
66Freed: 9
67Reused: 4
68Allocs: 5
69Retain: 5
70
71Unifications: 9
72Conjuncts: 9
73Disjuncts: 12
74-- out/eval --
75(struct){
76 a: (int){ 3 }
77 b: (struct){
78 c: (struct){
79 d: (int){ 3 }
80 }
81 }
82 c: (struct){
83 c: (int){ 2 }
84 }
85 d: (struct){
86 d: (int){ 2 }
87 }
88}
View as plain text