Enters a new scope by appending any necessary whitespace and the given bracket.
(JsonScope empty, String openBracket)
| 260 | * bracket. |
| 261 | */ |
| 262 | private JsonWriter open(JsonScope empty, String openBracket) throws IOException { |
| 263 | beforeValue(true); |
| 264 | stack.add(empty); |
| 265 | out.write(openBracket); |
| 266 | return this; |
| 267 | } |
| 268 | |
| 269 | /** |
| 270 | * Closes the current scope by appending any necessary whitespace and the |
no test coverage detected