()
| 304 | } |
| 305 | |
| 306 | func (w *jsonWriter) writeComma() { |
| 307 | if w.Indent != "" { |
| 308 | w.write(",\n") |
| 309 | } else { |
| 310 | w.write(",") |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | func (w *jsonWriter) marshalAny(m protoreflect.Message, indent string) error { |
| 315 | // "If the Any contains a value that has a special JSON mapping, |
no test coverage detected