(self, py_db, function_breakpoints)
| 757 | py_db.on_breakpoints_changed(removed=True) |
| 758 | |
| 759 | def set_function_breakpoints(self, py_db, function_breakpoints): |
| 760 | function_breakpoint_name_to_breakpoint = {} |
| 761 | for function_breakpoint in function_breakpoints: |
| 762 | function_breakpoint_name_to_breakpoint[function_breakpoint.func_name] = function_breakpoint |
| 763 | |
| 764 | py_db.function_breakpoint_name_to_breakpoint = function_breakpoint_name_to_breakpoint |
| 765 | py_db.on_breakpoints_changed() |
| 766 | |
| 767 | def request_exec_or_evaluate(self, py_db, seq, thread_id, frame_id, expression, is_exec, trim_if_too_big, attr_to_set_result): |
| 768 | py_db.post_method_as_internal_command( |
no test coverage detected