github.com/solo-io/cue@v0.4.7/internal/core/export/testdata/issue662.txtar (about) 1 2 -- uplot.cue -- 3 #LineConfig: { 4 lineColor?: string 5 } 6 7 #GraphFieldConfig: #LineConfig & { 8 drawStyle?: int 9 } 10 -- out/definition -- 11 #LineConfig: { 12 lineColor?: string 13 } 14 #GraphFieldConfig: #LineConfig & { 15 drawStyle?: int 16 } 17 -- out/doc -- 18 [] 19 [#LineConfig] 20 [#GraphFieldConfig] 21 -- out/value -- 22 == Simplified 23 {} 24 == Raw 25 { 26 #LineConfig: { 27 lineColor?: string 28 } 29 #GraphFieldConfig: { 30 lineColor?: string 31 } 32 } 33 == Final 34 {} 35 == All 36 { 37 #LineConfig: { 38 lineColor?: string 39 } 40 #GraphFieldConfig: { 41 lineColor?: string 42 } 43 } 44 == Eval 45 { 46 #LineConfig: { 47 lineColor?: string 48 } 49 #GraphFieldConfig: { 50 lineColor?: string 51 } 52 }