...

Text file src/cuelang.org/go/encoding/protobuf/jsonpb/testdata/encoder/simple.txtar

Documentation: cuelang.org/go/encoding/protobuf/jsonpb/testdata/encoder

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

View as plain text