(jw *JSONWriter)
| 29 | // ParamWriter must be implemented by all types that write a parameter ("key":value)to the JSON writer. |
| 30 | type ParamWriter interface { |
| 31 | WriteValueTo(jw *JSONWriter) |
| 32 | } |
| 33 | |
| 34 | func (jw *JSONWriter) beforeField(key string) { |
no outgoing calls