PsiElement lastParent,
@NotNull PsiElement place) {
if (lastParent == null )
return true;
GoSwitchTypeGuard typeGuard = getTypeGuard();
if ( lastParent != typeGuard ) {
if (!typeGuard.processDeclarations(processor, state, null, place))
return false;
}
GoSimpleStatement initStatement = getSimpleStatement();
return !(initStatement != null && lastParent != initStatement) || initStatement.processDeclarations(processor, state, null, place);