(self)
| 675 | self._library.inject_into_component_item() |
| 676 | |
| 677 | def _on_save(self): |
| 678 | if self._doc_props.is_subcircuit: |
| 679 | self._save_subcircuit() |
| 680 | elif self._current_path is None: |
| 681 | self._on_save_as() |
| 682 | else: |
| 683 | self._save_to(self._current_path) |
| 684 | |
| 685 | def _on_save_as(self): |
| 686 | if self._doc_props.is_subcircuit: |
nothing calls this directly
no test coverage detected