cuelang.org/go@v0.13.0/cue/testdata/export/005.txtar (about)

     1  -- in.cue --
     2  {a: 1, b: a + 2, c: null, d: true, e: _, f: string}
     3  -- out/def --
     4  a: 1
     5  b: 3
     6  c: null
     7  d: true
     8  e: _
     9  f: string
    10  -- out/compile --
    11  --- in.cue
    12  {
    13    {
    14      a: 1
    15      b: (怈0;a怉 + 2)
    16      c: null
    17      d: true
    18      e: _
    19      f: string
    20    }
    21  }
    22  -- out/eval/stats --
    23  Leaks:  0
    24  Freed:  7
    25  Reused: 5
    26  Allocs: 2
    27  Retain: 0
    28  
    29  Unifications: 7
    30  Conjuncts:    8
    31  Disjuncts:    7
    32  -- out/eval --
    33  (struct){
    34    a: (int){ 1 }
    35    b: (int){ 3 }
    36    c: (null){ null }
    37    d: (bool){ true }
    38    e: (_){ _ }
    39    f: (string){ string }
    40  }