blob: 425efdedefb6848d5da38110b96dc7b418d5856b [file] [log] [blame]
# DO NOT EDIT; generated by go run testdata/gen.go
#
#name: recursive evaluation within list
#evalFull
-- in.cue --
l: [a]
a: b & {c: "t"}
b: {
d: c
c: string
}
l1: [a1]
a1: b1 & {c: "t"}
b1: {
d: "s" + c
c: string
}
-- out/def --
l: [a]
a: b & {
c: "t"
}
b: {
c: string
d: c
}
l1: [a1]
a1: b1 & {
c: "t"
}
b1: {
c: string
d: "s" + c
}
-- out/legacy-debug --
<0>{l: [<1>{c: "t", d: "t"}], a: <2>{c: "t", d: "t"}, b: <3>{c: string, d: string}, l1: [<4>{c: "t", d: "st"}], a1: <5>{c: "t", d: "st"}, b1: <6>{c: string, d: ("s" + <7>.c)}}