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