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

25 lines
690 B
Java
Raw Normal View History

package de.dhbwstuttgart.syntaxtree.statement;
import java.util.List;
2017-02-10 16:37:42 +00:00
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPH;
2017-03-06 16:59:01 +00:00
import de.dhbwstuttgart.typeinference.ConstraintSet;
import de.dhbwstuttgart.typeinference.assumptions.TypeInferenceInformation;
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-02-10 16:37:42 +00:00
private RefTypeOrTPH type;
2017-03-06 16:59:01 +00:00
public List<Expression> expr;
2017-03-06 16:59:01 +00:00
@Override
public ConstraintSet getConstraints(TypeInferenceInformation info) {
throw new NotImplementedException();
}
}