7 references to Enum
Microsoft.CodeAnalysis.Features (7)
GenerateType\AbstractGenerateTypeService.CodeAction.cs (3)
127
typeKindValue = state.IsInterfaceOrEnumNotAllowedInTypeContext ? TypeKindOptionsHelper.RemoveOptions(typeKindValue, TypeKindOptions.Interface, TypeKindOptions.
Enum
) : typeKindValue;
129
typeKindValue = state.IsEnumNotAllowed ? TypeKindOptionsHelper.RemoveOptions(typeKindValue, TypeKindOptions.
Enum
) : typeKindValue;
164
typeKindValueFinal = state.IsEnumNotAllowed ? TypeKindOptionsHelper.RemoveOptions(typeKindValueFinal, TypeKindOptions.
Enum
) : typeKindValueFinal;
GenerateType\TypeKindOptions.cs (4)
24
AllOptions = Class | Structure | Interface |
Enum
| Delegate,
35
MemberAccessWithNamespace = Class | Structure |
Enum
| Module,
38
GenericInCompatibleTypes =
Enum
| Module
53
=> (option & TypeKindOptions.
Enum
) != 0 ? true : false;