File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
cross-project-tests/debuginfo-tests/dexter/dex/debugger Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -611,7 +611,7 @@ def _flush_breakpoints(self):
611611 dex_bp_ids = self .get_current_bps (file )
612612 self ._update_breakpoint_ids_after_request (dex_bp_ids , result )
613613
614- # Funciton breakpoints.
614+ # Function breakpoints.
615615 if self .pending_function_breakpoints :
616616 self .pending_function_breakpoints = False
617617 desired_bps = list (self .function_bp_info .values ())
@@ -693,7 +693,7 @@ def _get_launch_params(self, cmdline):
693693 """ "Set the debugger-specific params used in a launch request."""
694694
695695 def launch (self , cmdline ):
696- # FIXME: This should probably not a warning, not an assert.
696+ # FIXME: Should this be a warning or exception, rather than assert?
697697 assert (
698698 len (self .file_to_bp )
699699 + len (self .function_bp_info )
Original file line number Diff line number Diff line change @@ -529,7 +529,7 @@ def _confirm_triggered_breakpoint_ids(self, dex_bp_ids):
529529 confirmed_breakpoint_ids = set ()
530530 for dex_bp_id in dex_bp_ids :
531531 # Function and instruction breakpoints don't use conditions.
532- # FIXME: That's not a DAP restruction , so they could in future.
532+ # FIXME: That's not a DAP restriction , so they could in future.
533533 if dex_bp_id not in self .bp_info :
534534 assert (
535535 dex_bp_id in self .function_bp_info
You can’t perform that action at this time.
0 commit comments