package code.type;

import code.type.visitor.TypeVisitor;

/**
 * @author Pravin Damle
 * @since Dec 10, 2004
 */

public interface TypeExpression {

    <R,T> R accept(TypeVisitor<R,T> v, T o);

}

