github.com/solo-io/cue@v0.4.7/cue/testdata/export/005.txtar (about) 1 # DO NOT EDIT; generated by go run testdata/gen.go 2 # 3 -- in.cue -- 4 {a: 1, b: a + 2, c: null, d: true, e: _, f: string} 5 -- out/def -- 6 a: 1 7 b: 3 8 c: null 9 d: true 10 e: _ 11 f: string 12 -- out/compile -- 13 --- in.cue 14 { 15 { 16 a: 1 17 b: (ć0;ać + 2) 18 c: null 19 d: true 20 e: _ 21 f: string 22 } 23 } 24 -- out/eval -- 25 (struct){ 26 a: (int){ 1 } 27 b: (int){ 3 } 28 c: (null){ null } 29 d: (bool){ true } 30 e: (_){ _ } 31 f: (string){ string } 32 }