JSON built-in renderer.
| 43 | |
| 44 | // JSON built-in renderer. |
| 45 | type JSON struct { |
| 46 | Head |
| 47 | Indent bool |
| 48 | UnEscapeHTML bool |
| 49 | Prefix []byte |
| 50 | StreamingJSON bool |
| 51 | Encoder func(w io.Writer) JSONEncoder |
| 52 | } |
| 53 | |
| 54 | // JSONP built-in renderer. |
| 55 | type JSONP struct { |
nothing calls this directly
no outgoing calls
no test coverage detected