package de.dhbwstuttgart.syntaxtree.statement; import de.dhbwstuttgart.typeinference.assumptions.TypeInferenceBlockInformation; import de.dhbwstuttgart.typeinference.constraints.ConstraintSet; import de.dhbwstuttgart.typeinference.assumptions.TypeInferenceInformation; import sun.reflect.generics.reflectiveObjects.NotImplementedException; public class PostIncExpr extends UnaryExpr { public PostIncExpr(Expression expr) { super(null); } @Override public ConstraintSet getConstraints(TypeInferenceBlockInformation info) { throw new NotImplementedException(); } }