Skip to content

Commit 1e23ec1

Browse files
committed
Python: Fix detailed_operands on *callUntyped
1 parent 8e1dbda commit 1e23ec1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/mediumlevelil.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2229,7 +2229,7 @@ def stack(self) -> MediumLevelILInstruction:
22292229
def detailed_operands(self) -> List[Tuple[str, MediumLevelILOperandType, str]]:
22302230
return [
22312231
('output', self.output, 'List[Variable]'),
2232-
('params', self.params, 'List[Variable]'),
2232+
('params', self.params, 'List[MediumLevelILInstruction]'),
22332233
('stack', self.stack, 'MediumLevelILInstruction'),
22342234
]
22352235

@@ -2729,7 +2729,7 @@ def detailed_operands(self) -> List[Tuple[str, MediumLevelILOperandType, str]]:
27292729
return [
27302730
('output', self.output, 'List[Variable]'),
27312731
('dest', self.dest, 'MediumLevelILInstruction'),
2732-
('params', self.params, 'List[Variable]'),
2732+
('params', self.params, 'List[MediumLevelILInstruction]'),
27332733
('stack', self.stack, 'MediumLevelILInstruction'),
27342734
]
27352735

@@ -2979,7 +2979,7 @@ def detailed_operands(self) -> List[Tuple[str, MediumLevelILOperandType, str]]:
29792979
return [
29802980
('output', self.output, 'List[Variable]'),
29812981
('dest', self.dest, 'MediumLevelILInstruction'),
2982-
('params', self.params, 'List[Variable]'),
2982+
('params', self.params, 'List[MediumLevelILInstruction]'),
29832983
('stack', self.stack, 'MediumLevelILInstruction'),
29842984
]
29852985

0 commit comments

Comments
 (0)