|
|
@ -109,8 +109,7 @@ public final class MethodNodeUtils { |
|
|
|
method.invisibleLocalVariableAnnotations.forEach(v -> v.index = remapAll(v.index, argType, localIndex)); |
|
|
|
method.invisibleLocalVariableAnnotations.forEach(v -> v.index = remapAll(v.index, argType, localIndex)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
for (var it = method.instructions.iterator(); it.hasNext(); ) { |
|
|
|
for (var insn : method.instructions) { |
|
|
|
var insn = it.next(); |
|
|
|
|
|
|
|
switch (insn.getType()) { |
|
|
|
switch (insn.getType()) { |
|
|
|
case AbstractInsnNode.VAR_INSN: |
|
|
|
case AbstractInsnNode.VAR_INSN: |
|
|
|
var varInsn = (VarInsnNode) insn; |
|
|
|
var varInsn = (VarInsnNode) insn; |
|
|
|