Retrieve typeCheck in TypedAssignment

This commit is contained in:
ahmad 2024-05-15 22:42:58 +02:00
parent f1b366e157
commit 4aa2a52480

View File

@ -25,6 +25,7 @@ public class TypedAssignment implements TypedStatement {
public void convertToTypedAssignment(TypedProgram typedProgram, Assignment untyped) {
value = convertExpression(typedProgram, untyped.value());
location = new TypedFieldVarAccess(typedProgram, untyped.location());
location.typeCheck(typedProgram);
}
@Override