Writes the specified JSON string, without quoting or escaping.
(String json)
| 134 | |
| 135 | /** Writes the specified JSON string, without quoting or escaping. */ |
| 136 | public JsonString json (String json) { |
| 137 | requireCommaOrName(); |
| 138 | buffer.append(json); |
| 139 | return this; |
| 140 | } |
| 141 | |
| 142 | private void requireCommaOrName () { |
| 143 | if ((current & isObject) != 0) { |
nothing calls this directly
no test coverage detected