(parsed: Dict[str, Any], key: str, text: str)
| 5398 | |
| 5399 | @staticmethod |
| 5400 | def _append_parsed_text(parsed: Dict[str, Any], key: str, text: str) -> None: |
| 5401 | if not text: |
| 5402 | return |
| 5403 | existing = parsed.get(key) |
| 5404 | if isinstance(existing, str): |
| 5405 | parsed[key] = existing + text |
| 5406 | else: |
| 5407 | parsed[key] = text |
| 5408 | |
| 5409 | def _append_visible_text(self, key: str, text: str) -> None: |
| 5410 | if not text: |
no outgoing calls
no test coverage detected