(buf *bytes.Buffer)
| 662 | } |
| 663 | |
| 664 | func (j jsonObject) Format(buf *bytes.Buffer) { |
| 665 | buf.WriteByte('{') |
| 666 | for i := range j { |
| 667 | if i != 0 { |
| 668 | buf.WriteString(", ") |
| 669 | } |
| 670 | encodeJSONString(buf, string(j[i].k)) |
| 671 | buf.WriteString(": ") |
| 672 | j[i].v.Format(buf) |
| 673 | } |
| 674 | buf.WriteByte('}') |
| 675 | } |
| 676 | |
| 677 | func (jsonNull) Size() uintptr { return 0 } |
| 678 |
nothing calls this directly
no test coverage detected