MCPcopy Create free account
hub / github.com/Marus/cortex-debug / forceMerge

Method forceMerge

src/backend/disasm.ts:164–174  ·  view source on GitHub ↗
(other: InstructionRange)

Source from the content-addressed store, hash-verified

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
177class DisassemblyReturn {

Callers 1

Calls 2

tryMergeMethod · 0.95
adjustBoundariesMethod · 0.95

Tested by

no test coverage detected