...

Text file src/cuelang.org/go/cue/testdata/resolve/004.txtar

Documentation: cuelang.org/go/cue/testdata/resolve

     1# DO NOT EDIT; generated by go run testdata/gen.go
     2#
     3#evalPartial
     4-- in.cue --
     5a: _
     6b: a
     7a: {d: 1, d: _}
     8b: _
     9-- out/def --
    10a: {
    11	d: 1
    12}
    13b: a
    14-- out/export --
    15a: {
    16	d: 1
    17}
    18b: {
    19	d: 1
    20}
    21-- out/yaml --
    22a:
    23  d: 1
    24b:
    25  d: 1
    26-- out/json --
    27{"a":{"d":1},"b":{"d":1}}
    28-- out/legacy-debug --
    29<0>{a: <1>{d: 1}, b: <2>{d: 1}}
    30-- out/compile --
    31--- in.cue
    32{
    33  a: _
    34  b: 怈0;a怉
    35  a: {
    36    d: 1
    37    d: _
    38  }
    39  b: _
    40}
    41-- out/eval/stats --
    42Leaks:  0
    43Freed:  5
    44Reused: 2
    45Allocs: 3
    46Retain: 0
    47
    48Unifications: 5
    49Conjuncts:    11
    50Disjuncts:    5
    51-- out/eval --
    52(struct){
    53  a: (struct){
    54    d: (int){ 1 }
    55  }
    56  b: (struct){
    57    d: (int){ 1 }
    58  }
    59}

View as plain text