github.com/solo-io/cue@v0.4.7/internal/core/dep/testdata/self.txtar (about) 1 -- in.cue -- 2 a: b: { 3 for x in b {} 4 5 x: { 6 c: m 7 d: y 8 e: f 9 f: 1 10 g: b.x 11 } 12 y: 3 13 } 14 15 m: 3 16 -- out/dependencies/field -- 17 -- out/dependencies/all -- 18 m 19 -- out/dependencies/dynamic -- 20 m 21 a.b.y 22 a.b.x.f 23 a.b