package code.type;

/**
 * This is the abstract base class for all named type expressions in the FLVM.
 *
 * @author jimeng
 * @since November 26, 2002
 */
public abstract class TypeIdentifier implements TypeExpression {

    public final String name;

    public TypeIdentifier(String name) { this.name = name; }

}

