(buf *bytes.Buffer)
| 919 | } |
| 920 | |
| 921 | func (j jsonObject) Format(buf *bytes.Buffer) { |
| 922 | buf.WriteByte('{') |
| 923 | for i := range j { |
| 924 | if i != 0 { |
| 925 | buf.WriteString(", ") |
| 926 | } |
| 927 | encodeJSONString(buf, string(j[i].k)) |
| 928 | buf.WriteString(": ") |
| 929 | j[i].v.Format(buf) |
| 930 | } |
| 931 | buf.WriteByte('}') |
| 932 | } |
| 933 | |
| 934 | func (jsonNull) Size() uintptr { return 0 } |
| 935 |
nothing calls this directly
no test coverage detected