forked from JavaTX/JavaCompilerCore
Bug 18: ? ext/sup ty1 = ? ext/sup ty2 wird reduziert zu ty1 = ty2
This commit is contained in:
parent
f66150a1e7
commit
c080f452ae
@ -1282,6 +1282,13 @@ throws MatchException
|
|||||||
//erledigt 15-02-03
|
//erledigt 15-02-03
|
||||||
if(P.OperatorEqual())
|
if(P.OperatorEqual())
|
||||||
{
|
{
|
||||||
|
if((P.TA1 instanceof ExtendsWildcardType && P.TA2 instanceof ExtendsWildcardType) || //PL 15-03-31 eingefuegt
|
||||||
|
(P.TA1 instanceof SuperWildcardType && P.TA2 instanceof SuperWildcardType))
|
||||||
|
{
|
||||||
|
H.add(new Pair(((WildcardType)P.TA1).GetWildcardType(), ((WildcardType)P.TA2).GetWildcardType(), PairOperator.Equal));
|
||||||
|
bRegel = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
//PL 15-03-05: Ich halte dies fuer falsch
|
//PL 15-03-05: Ich halte dies fuer falsch
|
||||||
////PL 15-02-08 bisher mit keinem Beispiel getestet
|
////PL 15-02-08 bisher mit keinem Beispiel getestet
|
||||||
|
Loading…
x
Reference in New Issue
Block a user