(other: InstructionRange)
| 162 | } |
| 163 | |
| 164 | public forceMerge(other: InstructionRange) { |
| 165 | if (this.tryMerge(other)) { |
| 166 | return; |
| 167 | } |
| 168 | if (this.startAddress < other.startAddress) { |
| 169 | this.instructions = this.instructions.concat(other.instructions); |
| 170 | } else { |
| 171 | this.instructions = other.instructions.concat(this.instructions); |
| 172 | } |
| 173 | this.adjustBoundaries(); |
| 174 | } |
| 175 | } |
| 176 | |
| 177 | class DisassemblyReturn { |
no test coverage detected