package edu.udel.cis.vsl.tass.front.minimp.ast.expression;
import edu.udel.cis.vsl.tass.front.minimp.ast.type.ASTIntegerType;
import edu.udel.cis.vsl.tass.front.minimp.ast.type.ASTTypeIF;
public class ASTSizeofExpression extends ASTExpression implements ASTExpressionIF {
private ASTTypeIF operand;
public ASTSizeofExpression(ASTTypeIF operand) {
super(new ASTIntegerType());
this.operand = operand;
}
public ASTTypeIF getOperand() {
return this.operand;
}
}