Searched refs:pcOffsetToInstructions (Results 1 – 1 of 1) sorted by relevance
172 pcOffsetToInstructions: Map<number, Array<number>>; property in SourceResolver204 this.pcOffsetToInstructions = new Map();447 if (!this.pcOffsetToInstructions.has(info.gap)) {448 this.pcOffsetToInstructions.set(info.gap, []);450 this.pcOffsetToInstructions.get(info.gap).push(Number(instruction));452 this.pcOffsets = Array.from(this.pcOffsetToInstructions.keys()).sort((a, b) => b - a);456 return this.pcOffsetToInstructions.size > 0;490 …const infos = this.pcOffsetToInstructions.get(keyOffset).map(instrId => this.instructionToPCOffset…549 const instrs = this.pcOffsetToInstructions.get(key);