Merge remote-tracking branch 'origin/master'

This commit is contained in:
Jochen Seyfried 2024-07-05 11:04:28 +02:00
commit e56139080f
3 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -166,7 +166,7 @@ public class AssignStatementExpression extends AbstractType implements IExpressi
currentType = typeContext.get(typeOfPrevious).get(instVar.fieldName); currentType = typeContext.get(typeOfPrevious).get(instVar.fieldName);
String descriptor = getFieldDescriptor(currentType, typeContext, instVar.fieldName, thisClass); String descriptor = getFieldDescriptor(currentType, typeContext, instVar.fieldName, typeOfPrevious);
mv.visitFieldInsn(Opcodes.PUTFIELD, typeOfPrevious, instVar.fieldName, descriptor); mv.visitFieldInsn(Opcodes.PUTFIELD, typeOfPrevious, instVar.fieldName, descriptor);
continue; continue;
} else { } else {