private boolean tryTypeDeclaration(PsiElement element) {
if ( !(element instanceof GoTypeSpec) ) {
return true;
}
GoTypeSpec typeSpec = (GoTypeSpec) element;
GoTypeNameDeclaration typeNameDeclaration = typeSpec.getTypeNameDeclaration();
if (typeNameDeclaration != null ) {
String typeName = typeNameDeclaration.getName();
if ( typeName != null && Character.isUpperCase(typeName.charAt(0)) ) {