Skip to content

Commit

Permalink
fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
alcuadrado committed May 9, 2024
1 parent 0569896 commit f7407fd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ function uncompressSourcemaps(compressedSourcemap: string): SourceMap[] {

function addUnmappedInstructions(
instructions: Instruction[],
bytecode: Buffer,
bytecode: Buffer
) {
const lastInstrPc = instructions[instructions.length - 1].pc;
let bytesIndex = lastInstrPc + 1;

while (bytecode[bytesIndex] !== Opcode.INVALID) {
const opcode = bytecode[nextPc];
const opcode = bytecode[bytesIndex];
let pushData: Buffer | undefined;

let pushDataLenth = 0;
Expand Down

0 comments on commit f7407fd

Please sign in to comment.