Skip to content

Commit 775227b

Browse files
committed
use get_function method rather than accessing a (renamed) field
1 parent ba89c6c commit 775227b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cross-project-tests/debuginfo-tests/dexter/dex/debugger/DebuggerControllers/ConditionalController.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def _build_bp_ranges(self):
197197
self._bp_ranges.append(bpr)
198198
if "DexStepFunction" in commands:
199199
for c in commands["DexStepFunction"]:
200-
bpr = BreakpointRange.step_function(c.expression, c.path, c.hit_count)
200+
bpr = BreakpointRange.step_function(c.get_function(), c.path, c.hit_count)
201201
self._bp_ranges.append(bpr)
202202

203203
def _set_leading_bps(self):

0 commit comments

Comments
 (0)