(key string)
| 17 | } |
| 18 | |
| 19 | func (o *Object) writeKey(key string) { |
| 20 | escapeStringBytes(o.w, []byte(key)) |
| 21 | o.w.WriteRune(colon) |
| 22 | } |
| 23 | |
| 24 | // Key adds the given named key to the JSON object. |
| 25 | // Returns a Value encoder that should be used to encode |
no test coverage detected