799800801802803804805806807808809
TypeName type = node.getType(); if (type != null) { for (VariableDeclaration variableDeclaration : variables) { enterScope(variableDeclaration.getElement()); try { type.accept(this); } finally { exitScope(); } // only one iteration break;