Skip to content

Commit

Permalink
Revert "fix copy/pasta in variable name"
Browse files Browse the repository at this point in the history
This reverts commit 15ddcf7. The
original variable names were correct.
  • Loading branch information
fuzyll committed Nov 30, 2023
1 parent 6d78cac commit cd870e8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions python/binaryview.py
Original file line number Diff line number Diff line change
Expand Up @@ -2446,20 +2446,20 @@ def instructions(self) -> InstructionsType:
@property
def llil_instructions(self) -> 'lowlevelil.LLILInstructionsType':
"""A generator of llil instructions"""
for instruction in self.llil_basic_blocks:
yield from instruction
for block in self.llil_basic_blocks:
yield from block

@property
def mlil_instructions(self) -> Generator['mediumlevelil.MediumLevelILInstruction', None, None]:
"""A generator of mlil instructions"""
for instruction in self.mlil_basic_blocks:
yield from instruction
for block in self.mlil_basic_blocks:
yield from block

@property
def hlil_instructions(self) -> 'highlevelil.HLILInstructionsType':
"""A generator of hlil instructions"""
for instruction in self.hlil_basic_blocks:
yield from instruction
for block in self.hlil_basic_blocks:
yield from block

@property
def parent_view(self) -> Optional['BinaryView']:
Expand Down

0 comments on commit cd870e8

Please sign in to comment.