Completion\CompletionProviders\DeclarationName\DeclarationNameRecommender.cs (5)
78var (type, plural) = UnwrapType(nameInfo.Type, semanticModel.Compilation, wasPlural: false, seenTypes: new HashSet<ITypeSymbol>());
123return UnwrapType(arrayType.ElementType, compilation, wasPlural: true, seenTypes: seenTypes);
129return UnwrapType(typeArgument, compilation, wasPlural: true, seenTypes);
158return UnwrapType(collectionType, compilation, wasPlural: true, seenTypes: seenTypes);
171return UnwrapType(namedType.TypeArguments[0], compilation, wasPlural: wasPlural, seenTypes: seenTypes);