forked from JavaTX/JavaCompilerCore
Fehler in Umwandlung von RefType zu GTV in BoGTV beheben
This commit is contained in:
parent
618847bf4f
commit
1ec9c3f67f
@ -88,14 +88,16 @@ public class BoundedGenericTypeVar extends GenericTypeVar
|
|||||||
ConstraintsSet ret = super.TYPE(ass);
|
ConstraintsSet ret = super.TYPE(ass);
|
||||||
//ass.addGenericVarAssumption(this);
|
//ass.addGenericVarAssumption(this);
|
||||||
//Die Type methode der BoundedGenericTypeVar schreibt zusätzlich noch die Constraints für die bounds
|
//Die Type methode der BoundedGenericTypeVar schreibt zusätzlich noch die Constraints für die bounds
|
||||||
|
Vector<Type> tempBounds = new Vector<>();
|
||||||
if(this.bounds != null){
|
if(this.bounds != null){
|
||||||
for(Type ev : this.bounds){
|
for(Type ev : this.bounds){
|
||||||
ConstraintType extendsType = ass.getTypeFor(ev, this);
|
ConstraintType extendsType = ass.getTypeFor(ev, this);
|
||||||
if(extendsType == null)throw new TypeinferenceException("Der Typ "+ev.getName()+" ist nicht korrekt", this);
|
if(extendsType == null)throw new TypeinferenceException("Der Typ "+ev.getName()+" ist nicht korrekt", this);
|
||||||
|
tempBounds.add(extendsType.getType());
|
||||||
//ret.add(new SingleConstraint(ass.getTypeFor(this, this), extendsType ));
|
//ret.add(new SingleConstraint(ass.getTypeFor(this, this), extendsType ));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
this.bounds = tempBounds;
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user