1 implementation of Value
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
9325public IOperation Value { get; }
15 references to Value
Microsoft.CodeAnalysis (1)
Operations\ControlFlowGraphBuilder.cs (1)
7744var capturedInput = VisitAndCapture(operation.Value);
Microsoft.CodeAnalysis.CodeStyle (4)
src\Analyzers\Core\Analyzers\PopulateSwitch\AbstractPopulateSwitchExpressionDiagnosticAnalyzer.cs (2)
24=> operation.Value; 27=> operation.Value.Type is null;
src\Analyzers\Core\Analyzers\PopulateSwitch\PopulateSwitchExpressionHelpers.cs (2)
18var switchExpression = operation.Value; 108var type = operation.Value.Type;
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Analyzers\Core\CodeFixes\PopulateSwitch\AbstractPopulateSwitchExpressionCodeFixProvider.cs (1)
44=> switchExpression.Value.Type ?? throw ExceptionUtilities.Unreachable();
Microsoft.CodeAnalysis.Features (5)
src\Analyzers\Core\Analyzers\PopulateSwitch\AbstractPopulateSwitchExpressionDiagnosticAnalyzer.cs (2)
24=> operation.Value; 27=> operation.Value.Type is null;
src\Analyzers\Core\Analyzers\PopulateSwitch\PopulateSwitchExpressionHelpers.cs (2)
18var switchExpression = operation.Value; 108var type = operation.Value.Type;
src\Analyzers\Core\CodeFixes\PopulateSwitch\AbstractPopulateSwitchExpressionCodeFixProvider.cs (1)
44=> switchExpression.Value.Type ?? throw ExceptionUtilities.Unreachable();
Microsoft.CodeAnalysis.Test.Utilities (4)
Compilation\OperationTreeVerifier.cs (2)
2128Visit(operation.Value, nameof(operation.Value));
Compilation\TestOperationVisitor.cs (2)
1552Assert.NotNull(operation.Value); 1553var children = operation.Arms.Cast<IOperation>().Prepend(operation.Value);