1 implementation of Operation
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
6133
public IOperation
Operation
{ get; }
9 references to Operation
Microsoft.CodeAnalysis (5)
Generated\Operations.Generated.cs (2)
1483
/// of <see cref="
Operation
" /> within <see cref="WhenNotNull" />.
1505
/// Operation to be evaluated if <see cref="
Operation
" /> is non null.
Operations\ControlFlowGraphBuilder.ConditionalAccessOperationTracker.cs (1)
17
/// Represents the stack <see cref="IConditionalAccessOperation.
Operation
"/>s of a tree of conditional accesses. The top of the stack is the
Operations\ControlFlowGraphBuilder.cs (2)
3367
testExpression = currentConditionalAccess.
Operation
;
3435
SyntaxNode defaultValueSyntax = (operation.
Operation
== testExpression ? testExpression : operation).Syntax;
Microsoft.CodeAnalysis.Test.Utilities (4)
Compilation\OperationTreeVerifier.cs (2)
1137
Visit(operation.
Operation
, header: nameof(operation.
Operation
));
Compilation\TestOperationVisitor.cs (1)
712
AssertEx.Equal(new[] { operation.
Operation
, operation.WhenNotNull }, operation.ChildOperations);
Diagnostics\OperationTestAnalyzer.cs (1)
1846
if (conditionalAccess.WhenNotNull != null && conditionalAccess.
Operation
!= null)