()
| 58 | } |
| 59 | |
| 60 | public JsonString object () { |
| 61 | requireCommaOrName(); |
| 62 | buffer.append('{'); |
| 63 | stack.add(current); |
| 64 | current = object; |
| 65 | return this; |
| 66 | } |
| 67 | |
| 68 | public JsonString array () { |
| 69 | requireCommaOrName(); |
nothing calls this directly
no test coverage detected