Fehlende Klasse

This commit is contained in:
JanUlrich 2017-12-15 00:05:30 +01:00
parent 5386227a34
commit fb0ef510b2

View File

@ -0,0 +1,15 @@
package de.dhbwstuttgart.typeinference.result;
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
import de.dhbwstuttgart.syntaxtree.type.TypePlaceholder;
public class PairTPHEqualTPH extends ResultPair<TypePlaceholder, TypePlaceholder> {
public PairTPHEqualTPH(TypePlaceholder tl, TypePlaceholder tr) {
super(tl, tr);
}
@Override
public void accept(ResultSetVisitor visitor) {
visitor.visit(this);
}
}