()
| 357 | misc_lines = [] |
| 358 | |
| 359 | def process_disasm(): |
| 360 | nonlocal disasm_lines |
| 361 | |
| 362 | if len(disasm_lines) > 0: |
| 363 | disasm_lines = self.apply_to_block(last_block, disasm_lines) |
| 364 | func = block_lines[0].function |
| 365 | block = block_lines[0].block |
| 366 | for block_line in disasm_lines: |
| 367 | new_block_lines.append( |
| 368 | LinearDisassemblyLine( |
| 369 | LinearDisassemblyLineType.CodeDisassemblyLineType, |
| 370 | func, |
| 371 | block, |
| 372 | block_line |
| 373 | ) |
| 374 | ) |
| 375 | disasm_lines = [] |
| 376 | |
| 377 | def process_misc(): |
| 378 | nonlocal misc_lines |
nothing calls this directly
no test coverage detected