cuelang.org/go@v0.10.1/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  line  reference    path of resulting vertex
     9  1:    c.d       => c.d
    10  1:    c         => c
    11  1:    c         => c
    12  1:    e         => e
    13  1:    c["d"]    => c.d
    14  1:    c[d]      => c.d
    15  -- out/dependencies/all --
    16  line  reference    path of resulting vertex
    17  1:    c.d       => c.d
    18  1:    c         => c
    19  1:    c         => c
    20  1:    e         => e
    21  1:    c["d"]    => c.d
    22  1:    c[d]      => c.d
    23  -- out/dependencies/dynamic --
    24  line  reference    path of resulting vertex
    25  1:    c.d       => c.d
    26  1:    c         => c
    27  1:    c         => c
    28  1:    e         => e
    29  1:    c["d"]    => c.d
    30  1:    c[d]      => c.d