ASTCharType.java

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

public class ASTCharType extends ASTIntegerType implements ASTTypeIF {
  public ASTCharType() {
    this.hashCode = "char".hashCode();
  }

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

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