7 references to Enum
Microsoft.CodeAnalysis.Features (7)
GenerateType\AbstractGenerateTypeService.CodeAction.cs (3)
126typeKindValue = state.IsInterfaceOrEnumNotAllowedInTypeContext ? TypeKindOptionsHelper.RemoveOptions(typeKindValue, TypeKindOptions.Interface, TypeKindOptions.Enum) : typeKindValue; 128typeKindValue = state.IsEnumNotAllowed ? TypeKindOptionsHelper.RemoveOptions(typeKindValue, TypeKindOptions.Enum) : typeKindValue; 163typeKindValueFinal = state.IsEnumNotAllowed ? TypeKindOptionsHelper.RemoveOptions(typeKindValueFinal, TypeKindOptions.Enum) : typeKindValueFinal;
GenerateType\TypeKindOptions.cs (4)
22AllOptions = Class | Structure | Interface | Enum | Delegate, 33MemberAccessWithNamespace = Class | Structure | Enum | Module, 36GenericInCompatibleTypes = Enum | Module 51=> (option & TypeKindOptions.Enum) != 0 ? true : false;