package edu.udel.cis.vsl.tass.front.minimp.ast.expression;
import edu.udel.cis.vsl.tass.model.IF.SyntaxException;
public class ASTDereferenceExpression extends ASTUnaryExpression implements
ASTLhsExpressionIF {
public ASTDereferenceExpression(ASTExpressionIF operand)
throws SyntaxException {
super(UnaryOperator.DEREFERENCE, operand);
}
}