Searched refs:pcOffsetToInstructions (Results 1 – 1 of 1) sorted by relevance
92 pcOffsetToInstructions: Map<number, Array<number>>; property in SourceResolver121 this.pcOffsetToInstructions = new Map();342 if (!this.pcOffsetToInstructions.has(offset)) {343 this.pcOffsetToInstructions.set(offset, []);345 this.pcOffsetToInstructions.get(offset).push(instruction);347 console.log(this.pcOffsetToInstructions);351 return this.pcOffsetToInstructions.size > 0;356 const keys = Array.from(this.pcOffsetToInstructions.keys()).sort((a, b) => b - a);360 const instrs = this.pcOffsetToInstructions.get(key);