File: 009_reference.txtar

package info (click to toggle)
golang-github-cue-lang-cue 0.14.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,644 kB
  • sloc: makefile: 20; sh: 15
file content (107 lines) | stat: -rw-r--r-- 1,033 bytes parent folder | download | duplicates (2)
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
#name: reference
#evalPartial
-- in.cue --
a: b
b: 2
d: {
	d: 3
	e: d
}
e: {
	e: {
		v: 1
	}
	f: {
		v: e.v
	}
}
-- out/def --
a: 2
b: 2
d: {
	d: 3
	e: 3
}
e: {
	e: {
		v: 1
	}
	f: {
		v: 1
	}
}
-- out/export --
a: 2
b: 2
d: {
	d: 3
	e: 3
}
e: {
	e: {
		v: 1
	}
	f: {
		v: 1
	}
}
-- out/yaml --
a: 2
b: 2
d:
  d: 3
  e: 3
e:
  e:
    v: 1
  f:
    v: 1
-- out/json --
{"a":2,"b":2,"d":{"d":3,"e":3},"e":{"e":{"v":1},"f":{"v":1}}}
-- out/legacy-debug --
<0>{a: 2, b: 2, d: <1>{d: 3, e: 3}, e: <2>{e: <3>{v: 1}, f: <4>{v: 1}}}
-- out/compile --
--- in.cue
{
  a: 〈0;b〉
  b: 2
  d: {
    d: 3
    e: 〈0;d〉
  }
  e: {
    e: {
      v: 1
    }
    f: {
      v: 〈1;e〉.v
    }
  }
}
-- out/eval/stats --
Leaks:  0
Freed:  11
Reused: 7
Allocs: 4
Retain: 1

Unifications: 11
Conjuncts:    13
Disjuncts:    11
-- out/eval --
(struct){
  a: (int){ 2 }
  b: (int){ 2 }
  d: (struct){
    d: (int){ 3 }
    e: (int){ 3 }
  }
  e: (struct){
    e: (struct){
      v: (int){ 1 }
    }
    f: (struct){
      v: (int){ 1 }
    }
  }
}