forked from JavaTX/JavaCompilerCore
Fehlende Klasse
This commit is contained in:
parent
5386227a34
commit
fb0ef510b2
@ -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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user