case Type.CLASS:
{
ClassType clazz = (ClassType)type;
if (hasMoreSymbols()) {
symbol = consumeSymbol();
type = clazz.lookupDeclaration(symbol);
break;
}
if (!hasArgs()) {
listener.error(_location, "Syntax error: argument list expected after '"+_name.toString(1)+"'");
return null;