Implemented interface member:
property
Operand
Microsoft.CodeAnalysis.FlowAnalysis.IIsNullOperation.Operand
1 write to Operand
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
8519
Operand
= SetParentOperation(operand, this);
9 references to Operand
Microsoft.CodeAnalysis (5)
Generated\Operations.Generated.cs (5)
8525
(
Operand
is null ? 0 : 1);
8529
0 when
Operand
!= null
8530
=>
Operand
,
8538
if (
Operand
!= null) return (true, 0, 0);
8552
if (
Operand
!= null) return (true, 0, 0);
Microsoft.CodeAnalysis.Test.Utilities (4)
Compilation\ControlFlowGraphVerifier.cs (4)
1080
if (operation.Parent == null && operation is IsNullOperation isNull && isNull.
Operand
.Kind == OperationKind.FlowCaptureReference)
1082
switch (isNull.
Operand
.Language)
1086
CSharpSyntaxNode syntax = applyParenthesizedOrNullSuppressionIfAnyCS((CSharpSyntaxNode)isNull.
Operand
.Syntax);
1097
VisualBasicSyntaxNode syntax = applyParenthesizedIfAnyVB((VisualBasicSyntaxNode)isNull.
Operand
.Syntax);