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