(self)
| 389 | self.pushContext(JSONPairContext(self)) |
| 390 | |
| 391 | def readJSONObjectEnd(self): |
| 392 | self.readJSONSyntaxChar(RBRACE) |
| 393 | self.popContext() |
| 394 | |
| 395 | def readJSONArrayStart(self): |
| 396 | self.context.read() |
nothing calls this directly
no test coverage detected