5 references to OperationKindEx
Roslyn.Diagnostics.Analyzers (5)
AbstractDoNotCopyValue.cs (1)
1442case OperationKindEx.CollectionExpression:
src\RoslynAnalyzers\Utilities\Compiler\CodeMetrics\ComputationalComplexityMetrics.cs (2)
105if ((operationBlock.Kind is OperationKind.None or OperationKindEx.Attribute) && 331return !operation.DescendantsAndSelf().All(o => o.IsImplicit || (!o.ConstantValue.HasValue && o.Type == null && o.Kind is not (OperationKind.Branch or OperationKindEx.Attribute)));
src\RoslynAnalyzers\Utilities\Compiler\CodeMetrics\MetricsHelper.cs (1)
271case OperationKindEx.Attribute:
src\RoslynAnalyzers\Utilities\Compiler\Extensions\IOperationExtensions.cs (1)
493Debug.Assert(operation.Kind is OperationKind.None or OperationKindEx.Attribute, $"Unexpected root operation kind: {operation.Kind}");