14 references to EnumType
Microsoft.CodeAnalysis.Features (14)
EditAndContinue\TraceLog.cs (14)
42private static readonly StrongBox<EnumType> s_ProjectAnalysisSummary = new(EnumType.ProjectAnalysisSummary); 43private static readonly StrongBox<EnumType> s_RudeEditKind = new(EnumType.RudeEditKind); 44private static readonly StrongBox<EnumType> s_ModuleUpdateStatus = new(EnumType.ModuleUpdateStatus); 45private static readonly StrongBox<EnumType> s_EditAndContinueCapabilities = new(EnumType.EditAndContinueCapabilities); 65private Arg(int value, StrongBox<EnumType> enumKind) 76(Object is StrongBox<EnumType> { Value: var enumType }) ? enumType switch 78EnumType.ProjectAnalysisSummary => (ProjectAnalysisSummary)Int32, 79EnumType.RudeEditKind => (RudeEditKind)Int32, 80EnumType.ModuleUpdateStatus => (ModuleUpdateStatus)Int32, 81EnumType.EditAndContinueCapabilities => (EditAndContinueCapabilities)Int32,