github.com/solo-io/cue@v0.4.7/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  
    15  -- out/jsonpb --
    16  a: "1" @protobuf(1, int64)
    17  b: 2   @protobuf(1, int32)
    18  c: 3.4 @protobuf(1, int64)
    19  
    20  d: "foo\u1234"
    21  e: '\000'
    22  
    23  f: false
    24  // Doc comment
    25  t: true
    26  
    27  notConcrete: string