(self)
| 393 | self.popContext() |
| 394 | |
| 395 | def readJSONArrayStart(self): |
| 396 | self.context.read() |
| 397 | self.readJSONSyntaxChar(LBRACKET) |
| 398 | self.pushContext(JSONListContext(self)) |
| 399 | |
| 400 | def readJSONArrayEnd(self): |
| 401 | self.readJSONSyntaxChar(RBRACKET) |
nothing calls this directly
no test coverage detected