(self, canonical_normalized_filename, id_to_breakpoint, file_to_line_to_breakpoints)
| 1874 | pydev_log.exception("Error processing internal command.") |
| 1875 | |
| 1876 | def consolidate_breakpoints(self, canonical_normalized_filename, id_to_breakpoint, file_to_line_to_breakpoints): |
| 1877 | break_dict = {} |
| 1878 | for _breakpoint_id, pybreakpoint in id_to_breakpoint.items(): |
| 1879 | break_dict[pybreakpoint.line] = pybreakpoint |
| 1880 | |
| 1881 | file_to_line_to_breakpoints[canonical_normalized_filename] = break_dict |
| 1882 | self._clear_caches() |
| 1883 | |
| 1884 | def add_break_on_exception( |
| 1885 | self, |
no test coverage detected