github.com/solo-io/cue@v0.4.7/internal/core/dep/testdata/incomplete.txtar (about)

     1  -- in.cue --
     2  a: b: c.d | c.e | c[e] | c["d"] | c[d]
     3  
     4  c: d: 3
     5  d: "d"
     6  e: "e"
     7  -- out/dependencies/field --
     8  c.d
     9  c
    10  c
    11  e
    12  c.d
    13  c.d
    14  -- out/dependencies/all --
    15  c.d
    16  c
    17  c
    18  e
    19  c.d
    20  c.d
    21  -- out/dependencies/dynamic --
    22  c.d
    23  c
    24  c
    25  e
    26  c.d
    27  c.d