(self, key: str, text: str)
| 5407 | parsed[key] = text |
| 5408 | |
| 5409 | def _append_visible_text(self, key: str, text: str) -> None: |
| 5410 | if not text: |
| 5411 | return |
| 5412 | existing = self._message.get(key) |
| 5413 | if isinstance(existing, str): |
| 5414 | self._message[key] = existing + text |
| 5415 | else: |
| 5416 | self._message[key] = text |
| 5417 | |
| 5418 | @staticmethod |
| 5419 | def _advance_json_scanner( |
no outgoing calls
no test coverage detected