(session: StalkerSession, displayInstruction: DisplayInstruction, actualPc: NativePointer)
| 514 | } |
| 515 | |
| 516 | private logCurrentDisassembly(session: StalkerSession, displayInstruction: DisplayInstruction, actualPc: NativePointer): void { |
| 517 | const capturedWindow = this.getCapturedWindow(session, displayInstruction.address, 8); |
| 518 | if (capturedWindow.length > 0) { |
| 519 | logCapturedDisassemblyWindow(capturedWindow, displayInstruction.address, actualPc); |
| 520 | return; |
| 521 | } |
| 522 | |
| 523 | logDisassemblyWindow(displayInstruction.address, displayInstruction.text); |
| 524 | } |
| 525 | |
| 526 | private isOriginalCodeAddress(session: StalkerSession, address: NativePointer): boolean { |
| 527 | const filter = session.filter ?? session.restoreFilter; |
no test coverage detected