package de.dhbwstuttgart.syntaxtree.statement; import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPH; import de.dhbwstuttgart.typeinference.ConstraintSet; import de.dhbwstuttgart.typeinference.assumptions.TypeInferenceInformation; import sun.reflect.generics.reflectiveObjects.NotImplementedException; public class CastExpr extends Expression { public CastExpr(RefTypeOrTPH castType, Expression expr, int offset) { super(null, null); } public Expression expr; @Override public ConstraintSet getConstraints(TypeInferenceInformation info) { throw new NotImplementedException(); } }