...

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

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

     1# DO NOT EDIT; generated by go run testdata/gen.go
     2#
     3-- in.cue --
     4{
     5	$type:  3
     6	"_":    int
     7	"_foo": int
     8	_bar:   int
     9}
    10-- out/def --
    11$type:  3
    12"_":    int
    13"_foo": int
    14_bar:   int
    15-- out/compile --
    16--- in.cue
    17{
    18  {
    19    $type: 3
    20    "_": int
    21    "_foo": int
    22    _bar: int
    23  }
    24}
    25-- out/eval/stats --
    26Leaks:  0
    27Freed:  5
    28Reused: 3
    29Allocs: 2
    30Retain: 0
    31
    32Unifications: 5
    33Conjuncts:    6
    34Disjuncts:    5
    35-- out/eval --
    36(struct){
    37  $type: (int){ 3 }
    38  "_": (int){ int }
    39  "_foo": (int){ int }
    40  _bar: (int){ int }
    41}

View as plain text