pop that stack

This commit is contained in:
404Simon 2024-05-14 00:06:59 +02:00
parent 9f084a79bb
commit 2fb9ecd668

View File

@ -76,6 +76,8 @@ public class TypedAssignment implements TypedStatement {
receiver = location.getRecursiveOwnerChain().getType().getReference();
}
ctx.getMv().visitFieldInsn(Opcodes.PUTFIELD, receiver, location.getName(), value.getType().getDescriptor());
ctx.popStack();
ctx.popStack();
System.out.println("PUTFIELD: " + receiver + " " + location.getName() + " " + value.getType().getDescriptor());
}
}