cuelang.org/go@v0.10.1/encoding/protobuf/jsonpb/testdata/encoder/simple.txtar (about)

     1  -- value.cue --
     2  a: 1   @protobuf(1, int64)
     3  b: 2   @protobuf(1, int32)
     4  c: 3.4 @protobuf(1, int64)
     5  
     6  d: "foo\u1234"
     7  e: '\000'
     8  
     9  f: false
    10  // Doc comment
    11  t: true
    12  
    13  notConcrete: string
    14  -- out/jsonpb --
    15  a: "1" @protobuf(1, int64)
    16  b: 2   @protobuf(1, int32)
    17  c: 3.4 @protobuf(1, int64)
    18  
    19  d: "foo\u1234"
    20  e: '\000'
    21  
    22  f: false
    23  // Doc comment
    24  t: true
    25  
    26  notConcrete: string