(s string)
| 125 | } |
| 126 | |
| 127 | func (w *jsonWriter) write(s string) { |
| 128 | w.buf = append(w.buf, s...) |
| 129 | } |
| 130 | |
| 131 | func (w *jsonWriter) marshalMessage(m protoreflect.Message, indent, typeURL string) error { |
| 132 | if jsm, ok := proto.MessageV1(m.Interface()).(JSONPBMarshaler); ok { |
no outgoing calls
no test coverage detected