We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7481ad0 commit d7eaf25Copy full SHA for d7eaf25
cross-project-tests/debuginfo-tests/dexter/dex/command/commands/DexStepFunction.py
@@ -17,7 +17,7 @@ class DexStepFunction(CommandBase):
17
def __init__(self, *args, **kwargs):
18
if len(args) < 1:
19
raise TypeError("expected 1 positional argument")
20
- self.expression = str(args[0]) # Function name.
+ self.function = str(args[0]) # Function name.
21
self.hit_count = kwargs.pop("hit_count", None)
22
if kwargs:
23
raise TypeError(f"unexpected named args: {', '.join(kwargs)}")
@@ -27,7 +27,7 @@ def eval(self):
27
raise NotImplementedError("DexStepFunction commands cannot be evaled.")
28
29
def get_function(self):
30
- return self.expression
+ return self.function
31
32
@staticmethod
33
def get_name():
0 commit comments