JavaPatternMatching/src/de/dhbwstuttgart/syntaxtree/statement/NewArray.java

25 lines
750 B
Java
Raw Normal View History

package de.dhbwstuttgart.syntaxtree.statement;
import java.util.List;
2017-03-16 19:02:53 +00:00
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
import de.dhbwstuttgart.typeinference.assumptions.TypeInferenceBlockInformation;
import de.dhbwstuttgart.typeinference.constraints.ConstraintSet;
2017-03-06 16:59:01 +00:00
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
2017-03-01 14:34:57 +00:00
public class NewArray extends Expression
{
public NewArray(int offset,int variableLength)
{
super(null,null);
}
2017-03-16 19:02:53 +00:00
private RefTypeOrTPHOrWildcardOrGeneric type;
2017-03-06 16:59:01 +00:00
public List<Expression> expr;
2017-03-06 16:59:01 +00:00
@Override
2017-03-16 19:02:53 +00:00
public ConstraintSet getConstraints(TypeInferenceBlockInformation info) {
2017-03-06 16:59:01 +00:00
throw new NotImplementedException();
}
}