package edu.udel.cis.vsl.tass.front.minimp.ast.type;
public class ASTBoolType extends ASTScalarType {
public ASTBoolType() {
this.hashCode = "boolean".hashCode();
}
public String toString() {
return "boolean";
}
public boolean equals(Object that) {
if (that instanceof ASTBoolType) {
return true;
} else {
return false;
}
}
}