cuelang.org/go@v0.13.0/cue/format/testdata/issue1544.txtar (about) 1 -- if.input -- 2 if true { 3 x: 5 4 } 5 -- out/format/if.golden -- 6 if true { 7 x: 5 8 } 9 -- let.input -- 10 let x = 5 11 y: x 12 -- out/format/let.golden -- 13 let x = 5 14 y: x 15 -- for.input -- 16 for v in ["a", "b"] { 17 (v): v 18 } 19 -- out/format/for.golden -- 20 for v in ["a", "b"] { 21 (v): v 22 }