modified: src/main/java/de/dhbwstuttgart/typeinference/typeAlgo/TYPEStmt.java

Returntyp: Equaldot durch SMALLERDOT ersetzt
This commit is contained in:
pl@gohorb.ba-horb.de 2023-04-04 10:30:38 +02:00
parent f7b60214fa
commit e55b9938dc

View File

@ -610,8 +610,8 @@ public class TYPEStmt implements StatementVisitor{
//Fuer Bytecodegenerierung PL 2020-03-09 wird derzeit nicht benutzt ENDE
methodConstraint.add(new Pair(assumption.getReturnType(resolver), forMethod.getType(), PairOperator.EQUALSDOT));
extendsMethodConstraint.add(new Pair(assumption.getReturnType(resolver), forMethod.getType(), PairOperator.EQUALSDOT));
methodConstraint.add(new Pair(assumption.getReturnType(resolver), forMethod.getType(), PairOperator.SMALLERDOT));
extendsMethodConstraint.add(new Pair(assumption.getReturnType(resolver), forMethod.getType(), PairOperator.SMALLERDOT));
Set<Pair> parameterContraints = generateParameterConstraints(forMethod, assumption, info, resolver);