cuelang.org/go@v0.10.1/tools/flow/testdata/concrete.txtar (about) 1 #IgnoreConcrete: true 2 -- in.cue -- 3 root: { 4 t1: { 5 $id: "sequenced" 6 seq: 1 7 text: t2.value 8 value: "v" 9 } 10 t2: { 11 $id: "sequenced" 12 seq: 2 13 text: t1.value 14 value: "v" 15 } 16 } 17 -- out/run/errors -- 18 -- out/run/t0 -- 19 graph TD 20 t0("root.t1 [Ready]") 21 t1("root.t2 [Ready]") 22 23 -- out/run/t1 -- 24 graph TD 25 t0("root.t1 [Terminated]") 26 t1("root.t2 [Running]") 27 28 -- out/run/t1/value -- 29 { 30 $id: "sequenced" 31 seq: 1 32 text: "v" 33 value: "v" 34 } 35 -- out/run/t2 -- 36 graph TD 37 t0("root.t1 [Terminated]") 38 t1("root.t2 [Terminated]") 39 40 -- out/run/t2/value -- 41 { 42 $id: "sequenced" 43 seq: 2 44 text: "v" 45 value: "v" 46 } 47 -- out/run/t1/stats -- 48 Leaks: 0 49 Freed: 0 50 Reused: 0 51 Allocs: 0 52 Retain: 0 53 54 Unifications: 0 55 Conjuncts: 0 56 Disjuncts: 0 57 -- out/run/t2/stats -- 58 Leaks: 0 59 Freed: 0 60 Reused: 0 61 Allocs: 0 62 Retain: 0 63 64 Unifications: 0 65 Conjuncts: 0 66 Disjuncts: 0 67 -- out/run/stats/totals -- 68 Leaks: 0 69 Freed: 0 70 Reused: 0 71 Allocs: 0 72 Retain: 0 73 74 Unifications: 0 75 Conjuncts: 0 76 Disjuncts: 0