src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\Serialization\SymbolSpecification.cs (20)
62new SymbolKindOrTypeKind(TypeKind.Class),
63new SymbolKindOrTypeKind(TypeKind.Struct),
64new SymbolKindOrTypeKind(TypeKind.Interface),
65new SymbolKindOrTypeKind(TypeKind.Delegate),
66new SymbolKindOrTypeKind(TypeKind.Enum),
67new SymbolKindOrTypeKind(TypeKind.Module),
68new SymbolKindOrTypeKind(TypeKind.Pointer),
75new SymbolKindOrTypeKind(TypeKind.TypeParameter),
293foreach (var typeKindElement in symbolKindListElement.Elements(nameof(TypeKind)))
344public SymbolKindOrTypeKind(TypeKind typeKind)
355public TypeKind? TypeKind => (_category == SymbolCategory.Type) ? (TypeKind)_kind : null;
362SymbolCategory.Type => symbol is ITypeSymbol type && type.TypeKind == (TypeKind)_kind,
371SymbolCategory.Type => new XElement(nameof(TypeKind), GetTypeKindString((TypeKind)_kind)),
376private static string GetTypeKindString(TypeKind typeKind)
383CodeAnalysis.TypeKind.Structure => nameof(CodeAnalysis.TypeKind.Struct),
433=> new((TypeKind)Enum.Parse(typeof(TypeKind), typeKindElement.Value));
441public static implicit operator SymbolKindOrTypeKind(TypeKind symbolKind)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\Serialization\SymbolSpecification.cs (20)
62new SymbolKindOrTypeKind(TypeKind.Class),
63new SymbolKindOrTypeKind(TypeKind.Struct),
64new SymbolKindOrTypeKind(TypeKind.Interface),
65new SymbolKindOrTypeKind(TypeKind.Delegate),
66new SymbolKindOrTypeKind(TypeKind.Enum),
67new SymbolKindOrTypeKind(TypeKind.Module),
68new SymbolKindOrTypeKind(TypeKind.Pointer),
75new SymbolKindOrTypeKind(TypeKind.TypeParameter),
293foreach (var typeKindElement in symbolKindListElement.Elements(nameof(TypeKind)))
344public SymbolKindOrTypeKind(TypeKind typeKind)
355public TypeKind? TypeKind => (_category == SymbolCategory.Type) ? (TypeKind)_kind : null;
362SymbolCategory.Type => symbol is ITypeSymbol type && type.TypeKind == (TypeKind)_kind,
371SymbolCategory.Type => new XElement(nameof(TypeKind), GetTypeKindString((TypeKind)_kind)),
376private static string GetTypeKindString(TypeKind typeKind)
383CodeAnalysis.TypeKind.Structure => nameof(CodeAnalysis.TypeKind.Struct),
433=> new((TypeKind)Enum.Parse(typeof(TypeKind), typeKindElement.Value));
441public static implicit operator SymbolKindOrTypeKind(TypeKind symbolKind)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\Serialization\SymbolSpecification.cs (20)
62new SymbolKindOrTypeKind(TypeKind.Class),
63new SymbolKindOrTypeKind(TypeKind.Struct),
64new SymbolKindOrTypeKind(TypeKind.Interface),
65new SymbolKindOrTypeKind(TypeKind.Delegate),
66new SymbolKindOrTypeKind(TypeKind.Enum),
67new SymbolKindOrTypeKind(TypeKind.Module),
68new SymbolKindOrTypeKind(TypeKind.Pointer),
75new SymbolKindOrTypeKind(TypeKind.TypeParameter),
293foreach (var typeKindElement in symbolKindListElement.Elements(nameof(TypeKind)))
344public SymbolKindOrTypeKind(TypeKind typeKind)
355public TypeKind? TypeKind => (_category == SymbolCategory.Type) ? (TypeKind)_kind : null;
362SymbolCategory.Type => symbol is ITypeSymbol type && type.TypeKind == (TypeKind)_kind,
371SymbolCategory.Type => new XElement(nameof(TypeKind), GetTypeKindString((TypeKind)_kind)),
376private static string GetTypeKindString(TypeKind typeKind)
383CodeAnalysis.TypeKind.Structure => nameof(CodeAnalysis.TypeKind.Struct),
433=> new((TypeKind)Enum.Parse(typeof(TypeKind), typeKindElement.Value));
441public static implicit operator SymbolKindOrTypeKind(TypeKind symbolKind)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\Serialization\SymbolSpecification.cs (20)
62new SymbolKindOrTypeKind(TypeKind.Class),
63new SymbolKindOrTypeKind(TypeKind.Struct),
64new SymbolKindOrTypeKind(TypeKind.Interface),
65new SymbolKindOrTypeKind(TypeKind.Delegate),
66new SymbolKindOrTypeKind(TypeKind.Enum),
67new SymbolKindOrTypeKind(TypeKind.Module),
68new SymbolKindOrTypeKind(TypeKind.Pointer),
75new SymbolKindOrTypeKind(TypeKind.TypeParameter),
293foreach (var typeKindElement in symbolKindListElement.Elements(nameof(TypeKind)))
344public SymbolKindOrTypeKind(TypeKind typeKind)
355public TypeKind? TypeKind => (_category == SymbolCategory.Type) ? (TypeKind)_kind : null;
362SymbolCategory.Type => symbol is ITypeSymbol type && type.TypeKind == (TypeKind)_kind,
371SymbolCategory.Type => new XElement(nameof(TypeKind), GetTypeKindString((TypeKind)_kind)),
376private static string GetTypeKindString(TypeKind typeKind)
383CodeAnalysis.TypeKind.Structure => nameof(CodeAnalysis.TypeKind.Struct),
433=> new((TypeKind)Enum.Parse(typeof(TypeKind), typeKindElement.Value));
441public static implicit operator SymbolKindOrTypeKind(TypeKind symbolKind)
src\Analyzers\Core\CodeFixes\GenerateParameterizedMember\AbstractGenerateConversionService.cs (2)
24protected abstract bool TryInitializeImplicitConversionState(SemanticDocument document, SyntaxNode expression, ISet<TypeKind> classInterfaceModuleStructTypes, CancellationToken cancellationToken, out SyntaxToken identifierToken, [NotNullWhen(true)] out IMethodSymbol? methodSymbol, [NotNullWhen(true)] out INamedTypeSymbol? typeToGenerateIn);
25protected abstract bool TryInitializeExplicitConversionState(SemanticDocument document, SyntaxNode expression, ISet<TypeKind> classInterfaceModuleStructTypes, CancellationToken cancellationToken, out SyntaxToken identifierToken, [NotNullWhen(true)] out IMethodSymbol? methodSymbol, [NotNullWhen(true)] out INamedTypeSymbol? typeToGenerateIn);
Binder\Binder_Conversions.cs (26)
850case TypeKind.Enum:
851case TypeKind.Struct:
852case TypeKind.Class when !type.IsAnonymousType: // We don't want to enable object creation with unspeakable types
854case TypeKind.TypeParameter:
856case TypeKind.Delegate:
858case TypeKind.Interface:
860case TypeKind.Array:
861case TypeKind.Class:
862case TypeKind.Dynamic:
864goto case TypeKind.Error;
865case TypeKind.Pointer:
866case TypeKind.FunctionPointer:
868goto case TypeKind.Error;
869case TypeKind.Error:
3448Debug.Assert(delegateType is NamedTypeSymbol { TypeKind: TypeKind.Delegate, DelegateInvokeMethod: { HasUseSiteError: false } }
3449|| delegateType.TypeKind == TypeKind.FunctionPointer,
3565static bool hasConversion(TypeKind targetKind, Conversions conversions, TypeSymbol source, TypeSymbol destination,
3586return targetKind == TypeKind.FunctionPointer
3591static ErrorCode getMethodMismatchErrorCode(TypeKind type)
3594TypeKind.Delegate => ErrorCode.ERR_MethDelegateMismatch,
3595TypeKind.FunctionPointer => ErrorCode.ERR_MethFuncPtrMismatch,
3599static ErrorCode getRefMismatchErrorCode(TypeKind type)
3602TypeKind.Delegate => ErrorCode.ERR_DelegateRefMismatch,
3603TypeKind.FunctionPointer => ErrorCode.ERR_FuncPtrRefMismatch,
3639Debug.Assert(Conversions.IsAssignableFromMulticastDelegate(delegateOrFuncPtrType, ref discardedUseSiteInfo) || delegateOrFuncPtrType.TypeKind == TypeKind.Delegate || delegateOrFuncPtrType.TypeKind == TypeKind.FunctionPointer);
Symbols\TypeSymbolExtensions.cs (71)
72if (type.TypeKind != TypeKind.TypeParameter)
118if (type.TypeKind == TypeKind.TypeParameter)
240return type.TypeKind == TypeKind.Enum;
335case TypeKind.Pointer:
336case TypeKind.Dynamic:
337case TypeKind.FunctionPointer:
346return type is { IsValueType: true, TypeKind: not TypeKind.TypeParameter };
358return type.TypeKind == TypeKind.Class;
364return type.TypeKind == TypeKind.Struct;
380return type.TypeKind == TypeKind.Dynamic;
386return type.TypeKind == TypeKind.TypeParameter;
392return type.TypeKind == TypeKind.Array;
398return type.TypeKind == TypeKind.Array && ((ArrayTypeSymbol)type).IsSZArray;
441return type.TypeKind == TypeKind.FunctionPointer;
448case TypeKind.Pointer:
449case TypeKind.FunctionPointer:
461case TypeKind.Class:
462case TypeKind.Struct:
465case TypeKind.TypeParameter:
611return type.TypeKind == TypeKind.Delegate;
747case TypeKind.Class:
748case TypeKind.Struct:
749case TypeKind.Interface:
750case TypeKind.Enum:
751case TypeKind.Delegate:
752case TypeKind.Submission:
822case TypeKind.Class:
823case TypeKind.Struct:
824case TypeKind.Interface:
825case TypeKind.Enum:
826case TypeKind.Delegate:
841case TypeKind.Submission:
880case TypeKind.Dynamic:
881case TypeKind.TypeParameter:
882case TypeKind.Submission:
883case TypeKind.Enum:
893goto case TypeKind.Delegate;
895case TypeKind.Error:
896case TypeKind.Class:
897case TypeKind.Struct:
898case TypeKind.Interface:
899case TypeKind.Delegate:
900case TypeKind.Extension:
968case TypeKind.Array:
972case TypeKind.Pointer:
976case TypeKind.FunctionPointer:
1211if (ReferenceEquals(parent2.OriginalDefinition, parent1OriginalDefinition) || parent1OriginalDefinition.TypeKind == TypeKind.Submission && parent2.TypeKind == TypeKind.Submission)
1251(type, parameter, unused) => type.TypeKind == TypeKind.TypeParameter && (parameter is null || TypeSymbol.Equals(type, parameter, TypeCompareKind.ConsiderEverything2));
1262(type, typeParameterContainer, unused) => type.TypeKind == TypeKind.TypeParameter && (object)type.ContainingSymbol == (object)typeParameterContainer;
1271(type, parameters, unused) => type.TypeKind == TypeKind.TypeParameter && parameters.Contains((TypeParameterSymbol)type);
1280(type, _, _) => type.TypeKind == TypeKind.TypeParameter && type.ContainingSymbol is MethodSymbol;
1291private static readonly Func<TypeSymbol, object?, bool, bool> s_containsDynamicPredicate = (type, unused1, unused2) => type.TypeKind == TypeKind.Dynamic;
1329type.VisitType((TypeSymbol t, object? _, bool _) => t.TypeKind is TypeKind.Pointer or TypeKind.FunctionPointer, null) is object;
1357internal static TypeKind GetNonErrorTypeKindGuess(this TypeSymbol type)
1556case TypeKind.Struct:
1559case TypeKind.Array:
1560case TypeKind.Class:
1561case TypeKind.Delegate:
1562case TypeKind.Dynamic:
1563case TypeKind.Error:
1564case TypeKind.Interface:
1565case TypeKind.Pointer:
1566case TypeKind.FunctionPointer:
1569case TypeKind.Enum:
1572case TypeKind.TypeParameter:
1575case TypeKind.Submission:
1716return type.IsReferenceType && type.TypeKind != TypeKind.TypeParameter;
1724return type.IsValueType && type.TypeKind != TypeKind.TypeParameter;
2049if (taskType.TypeKind == TypeKind.Error)
Completion\Providers\ImportCompletionProvider\ExtensionMemberImportCompletionHelper.SymbolComputer_Constraints.cs (5)
31=> CheckConstraints(receiverTypeSymbol, typeParameter, TypeKind.Interface, static type => type.GetAllInterfacesIncludingThis());
34=> CheckConstraints(receiverTypeSymbol, typeParameter, TypeKind.Class, static type => type.GetBaseTypesAndThis());
38TypeKind typeKind,
68TypeKind constraintTypeKind,
105ITypeSymbol type, TypeKind typeKind, Func<ITypeSymbol, IEnumerable<ITypeSymbol>> getInheritanceTypes)
src\Analyzers\Core\CodeFixes\GenerateParameterizedMember\AbstractGenerateConversionService.cs (2)
24protected abstract bool TryInitializeImplicitConversionState(SemanticDocument document, SyntaxNode expression, ISet<TypeKind> classInterfaceModuleStructTypes, CancellationToken cancellationToken, out SyntaxToken identifierToken, [NotNullWhen(true)] out IMethodSymbol? methodSymbol, [NotNullWhen(true)] out INamedTypeSymbol? typeToGenerateIn);
25protected abstract bool TryInitializeExplicitConversionState(SemanticDocument document, SyntaxNode expression, ISet<TypeKind> classInterfaceModuleStructTypes, CancellationToken cancellationToken, out SyntaxToken identifierToken, [NotNullWhen(true)] out IMethodSymbol? methodSymbol, [NotNullWhen(true)] out INamedTypeSymbol? typeToGenerateIn);
Binding\Binder_Lookup.vb (35)
16Imports TypeKind = Microsoft.CodeAnalysis.TypeKind
580Case TypeKind.Class, TypeKind.Module, TypeKind.Structure, TypeKind.Delegate, TypeKind.Array, TypeKind.Enum
583Case TypeKind.Submission
586Case TypeKind.Interface
589Case TypeKind.TypeParameter
592Case TypeKind.Error
606Case TypeKind.Class, TypeKind.Structure, TypeKind.Delegate, TypeKind.Array, TypeKind.Enum
609Case TypeKind.Module
612Case TypeKind.Submission
615Case TypeKind.Interface
618Case TypeKind.TypeParameter
621Case TypeKind.Error
931Case TypeKind.Class, TypeKind.Module, TypeKind.Structure
936Case TypeKind.Interface
941Case TypeKind.TypeParameter
1092Case TypeKind.Class, TypeKind.Module, TypeKind.Structure
1104Case TypeKind.Interface
1116Case TypeKind.TypeParameter
1697Case TypeKind.Interface
1710Case TypeKind.TypeParameter
1964(container.TypeKind = TypeKind.Class OrElse container.TypeKind = TypeKind.Structure) AndAlso
Compilation\ClsComplianceChecker.vb (26)
186If symbol.TypeKind = TypeKind.Delegate Then
340ElseIf symbol.TypeKind = TypeKind.Enum Then
439If type.TypeKind = TypeKind.Delegate AndAlso type.IsImplicitlyDeclared AndAlso TryCast(type, NamedTypeSymbol)?.AssociatedSymbol Is symbol Then
591Case TypeKind.Array
593Case TypeKind.Error, TypeKind.TypeParameter
595Case TypeKind.Class, TypeKind.Structure, TypeKind.Interface, TypeKind.Delegate, TypeKind.Enum, TypeKind.Submission, TypeKind.Module
617Case TypeKind.Array
619Case TypeKind.Error, TypeKind.TypeParameter
621Case TypeKind.Class, TypeKind.Structure, TypeKind.Interface, TypeKind.Delegate, TypeKind.Enum, TypeKind.Submission, TypeKind.Module
636If type.TypeKind = TypeKind.Error Then
892Dim typeKind As TypeKind = xType.TypeKind
897If typeKind = TypeKind.Array Then
Symbols\Source\SourceNamedTypeSymbol.vb (40)
18Imports TypeKind = Microsoft.CodeAnalysis.TypeKind
247If TypeKind = TypeKind.Delegate Then
275ElseIf TypeKind = TypeKind.Enum Then
1117Case TypeKind.TypeParameter
1121Case TypeKind.Interface, TypeKind.Enum, TypeKind.Delegate, TypeKind.Structure, TypeKind.Module, TypeKind.Array ' array can't really occur
1125Case TypeKind.Error, TypeKind.Unknown
1128Case TypeKind.Class
1188Case TypeKind.TypeParameter
1192Case TypeKind.Unknown
1195Case TypeKind.Interface, TypeKind.Error
1239Case TypeKind.TypeParameter
1243Case TypeKind.Unknown
1246Case TypeKind.Interface, TypeKind.Error
1382Case TypeKind.Submission
1388Case TypeKind.Class
1391Case TypeKind.Interface
1394Case TypeKind.Enum
1397Case TypeKind.Structure
1400Case TypeKind.Delegate
1403Case TypeKind.Module
1510Debug.Assert(Me.TypeKind <> TypeKind.Interface)
1512If TypeKind = TypeKind.Enum Then
1515ElseIf TypeKind = TypeKind.Delegate Then
1724TypeKind <> TypeKind.Class OrElse
2267Case TypeKind.Class
2294Case TypeKind.Interface
2314Case TypeKind.Module
2349Dim defaultAutoLayoutSize = If(Me.TypeKind = TypeKind.Structure, 1, 0)
2484If Me.TypeKind = TypeKind.Module Then
2539If Me.TypeKind = TypeKind.Structure Then
2589If Me.TypeKind = TypeKind.Module Then
2735If Me.TypeKind = TypeKind.Class AndAlso Not Me.IsGenericType Then
Symbols\TypeSymbolExtensions.vb (46)
118Return type.TypeKind = TypeKind.Enum
140Return type.TypeKind = TypeKind.Class
146Return type.TypeKind = TypeKind.Structure
152Return type.TypeKind = TypeKind.Module
233Return type.TypeKind = TypeKind.Delegate
410Case TypeKind.Array, TypeKind.Delegate, TypeKind.Enum, TypeKind.Structure, TypeKind.Module
412Case TypeKind.Interface, TypeKind.TypeParameter, TypeKind.Unknown
414Case TypeKind.Error, TypeKind.Class, TypeKind.Submission
635Case TypeKind.Array
637Case TypeKind.TypeParameter
735fieldType.TypeKind = TypeKind.Enum
746If type.TypeKind = TypeKind.TypeParameter Then
761Return (type.TypeKind = TypeKind.TypeParameter) AndAlso
774Return (type.TypeKind = TypeKind.TypeParameter) AndAlso
790Private ReadOnly s_isTypeParameterFunc As Func(Of TypeSymbol, Object, Boolean) = Function(type, arg) (type.TypeKind = TypeKind.TypeParameter)
830Case TypeKind.Class,
831TypeKind.Struct,
832TypeKind.Interface,
833TypeKind.Enum,
834TypeKind.Delegate
845Case TypeKind.Submission
855Case TypeKind.Dynamic,
856TypeKind.TypeParameter,
857TypeKind.Submission,
858TypeKind.Enum,
859TypeKind.Module
863Case TypeKind.Class,
864TypeKind.Struct,
865TypeKind.Interface,
866TypeKind.Delegate,
867TypeKind.Error
883Case TypeKind.Array
1060If type.TypeKind = TypeKind.Class Then
1066If typeArgument.TypeKind = TypeKind.Delegate Then
1082If type.TypeKind = TypeKind.Delegate Then
1096If type.TypeKind = TypeKind.Delegate Then
1131If type.TypeKind = TypeKind.TypeParameter Then
1139If type.TypeKind = TypeKind.TypeParameter Then
Classification\ClassificationExtensions.cs (11)
12TypeKind.Class => type.IsRecord ? ClassificationTypeNames.RecordClassName : ClassificationTypeNames.ClassName,
13TypeKind.Module => ClassificationTypeNames.ModuleName,
14TypeKind.Struct => type.IsRecord ? ClassificationTypeNames.RecordStructName : ClassificationTypeNames.StructName,
15TypeKind.Interface => ClassificationTypeNames.InterfaceName,
16TypeKind.Enum => ClassificationTypeNames.EnumName,
17TypeKind.Delegate => ClassificationTypeNames.DelegateName,
18TypeKind.TypeParameter => ClassificationTypeNames.TypeParameterName,
19TypeKind.Dynamic => ClassificationTypeNames.Keyword,
20TypeKind.Array => ClassificationTypeNames.ArrayName,
21TypeKind.Pointer => ClassificationTypeNames.PointerName,
22TypeKind.FunctionPointer => ClassificationTypeNames.FunctionPointerName,
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\Serialization\SymbolSpecification.cs (20)
62new SymbolKindOrTypeKind(TypeKind.Class),
63new SymbolKindOrTypeKind(TypeKind.Struct),
64new SymbolKindOrTypeKind(TypeKind.Interface),
65new SymbolKindOrTypeKind(TypeKind.Delegate),
66new SymbolKindOrTypeKind(TypeKind.Enum),
67new SymbolKindOrTypeKind(TypeKind.Module),
68new SymbolKindOrTypeKind(TypeKind.Pointer),
75new SymbolKindOrTypeKind(TypeKind.TypeParameter),
293foreach (var typeKindElement in symbolKindListElement.Elements(nameof(TypeKind)))
344public SymbolKindOrTypeKind(TypeKind typeKind)
355public TypeKind? TypeKind => (_category == SymbolCategory.Type) ? (TypeKind)_kind : null;
362SymbolCategory.Type => symbol is ITypeSymbol type && type.TypeKind == (TypeKind)_kind,
371SymbolCategory.Type => new XElement(nameof(TypeKind), GetTypeKindString((TypeKind)_kind)),
376private static string GetTypeKindString(TypeKind typeKind)
383CodeAnalysis.TypeKind.Structure => nameof(CodeAnalysis.TypeKind.Struct),
433=> new((TypeKind)Enum.Parse(typeof(TypeKind), typeKindElement.Value));
441public static implicit operator SymbolKindOrTypeKind(TypeKind symbolKind)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\Serialization\SymbolSpecification.cs (20)
62new SymbolKindOrTypeKind(TypeKind.Class),
63new SymbolKindOrTypeKind(TypeKind.Struct),
64new SymbolKindOrTypeKind(TypeKind.Interface),
65new SymbolKindOrTypeKind(TypeKind.Delegate),
66new SymbolKindOrTypeKind(TypeKind.Enum),
67new SymbolKindOrTypeKind(TypeKind.Module),
68new SymbolKindOrTypeKind(TypeKind.Pointer),
75new SymbolKindOrTypeKind(TypeKind.TypeParameter),
293foreach (var typeKindElement in symbolKindListElement.Elements(nameof(TypeKind)))
344public SymbolKindOrTypeKind(TypeKind typeKind)
355public TypeKind? TypeKind => (_category == SymbolCategory.Type) ? (TypeKind)_kind : null;
362SymbolCategory.Type => symbol is ITypeSymbol type && type.TypeKind == (TypeKind)_kind,
371SymbolCategory.Type => new XElement(nameof(TypeKind), GetTypeKindString((TypeKind)_kind)),
376private static string GetTypeKindString(TypeKind typeKind)
383CodeAnalysis.TypeKind.Structure => nameof(CodeAnalysis.TypeKind.Struct),
433=> new((TypeKind)Enum.Parse(typeof(TypeKind), typeKindElement.Value));
441public static implicit operator SymbolKindOrTypeKind(TypeKind symbolKind)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\Serialization\SymbolSpecification.cs (20)
62new SymbolKindOrTypeKind(TypeKind.Class),
63new SymbolKindOrTypeKind(TypeKind.Struct),
64new SymbolKindOrTypeKind(TypeKind.Interface),
65new SymbolKindOrTypeKind(TypeKind.Delegate),
66new SymbolKindOrTypeKind(TypeKind.Enum),
67new SymbolKindOrTypeKind(TypeKind.Module),
68new SymbolKindOrTypeKind(TypeKind.Pointer),
75new SymbolKindOrTypeKind(TypeKind.TypeParameter),
293foreach (var typeKindElement in symbolKindListElement.Elements(nameof(TypeKind)))
344public SymbolKindOrTypeKind(TypeKind typeKind)
355public TypeKind? TypeKind => (_category == SymbolCategory.Type) ? (TypeKind)_kind : null;
362SymbolCategory.Type => symbol is ITypeSymbol type && type.TypeKind == (TypeKind)_kind,
371SymbolCategory.Type => new XElement(nameof(TypeKind), GetTypeKindString((TypeKind)_kind)),
376private static string GetTypeKindString(TypeKind typeKind)
383CodeAnalysis.TypeKind.Structure => nameof(CodeAnalysis.TypeKind.Struct),
433=> new((TypeKind)Enum.Parse(typeof(TypeKind), typeKindElement.Value));
441public static implicit operator SymbolKindOrTypeKind(TypeKind symbolKind)