CommonCharType.java

package edu.udel.cis.vsl.abc.ast.type.common;

import edu.udel.cis.vsl.abc.ast.type.IF.IntegerType;

public class CommonCharType extends CommonBasicType implements IntegerType {

	public CommonCharType() {
		super(BasicTypeKind.CHAR);
	}

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

}