ASTIntegerType.java

package edu.udel.cis.vsl.tass.front.minimp.ast.type;

public class ASTIntegerType extends ASTScalarType {
  public ASTIntegerType() {
    this.hashCode = "integer".hashCode();
  }

  public String toString() {
    return "int";
  }

  public boolean equals(Object that) {
    if (that instanceof ASTIntegerType) {
      return true;
    } else {
      return false;
    }
  }
}