Implemented interface member:
property
Operand
Microsoft.CodeAnalysis.Operations.IWithOperation.Operand
1 write to Operand
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
9654
Operand
= SetParentOperation(operand, this);
17 references to Operand
Microsoft.CodeAnalysis (17)
Generated\Operations.Generated.cs (6)
9663
(
Operand
is null ? 0 : 1) +
9668
0 when
Operand
!= null
9669
=>
Operand
,
9679
if (
Operand
!= null) return (true, 0, 0);
9699
if (
Operand
!= null) return (true, 0, 0);
10789
return new WithOperation(Visit(internalOperation.
Operand
), internalOperation.CloneMethod, Visit(internalOperation.Initializer), internalOperation.OwningSemanticModel, internalOperation.Syntax, internalOperation.Type, internalOperation.IsImplicit);
Operations\ControlFlowGraphBuilder.cs (11)
7699
AddStatement(VisitRequired(operation.
Operand
));
7704
VisitAndCapture(operation.
Operand
, oldValueCaptureId);
7746
var valueCaptureRef = new FlowCaptureReferenceOperation(valueCaptureId, operation.
Operand
.Syntax,
7747
operation.
Operand
.Type, constantValue: operation.
Operand
.GetConstantValue());
7767
var oldInstance = new FlowCaptureReferenceOperation(oldValueCaptureId, operation.
Operand
.Syntax,
7768
operation.
Operand
.Type, constantValue: operation.
Operand
.GetConstantValue());
7777
var extraValueCaptureRef = new FlowCaptureReferenceOperation(extraValueCaptureId, operation.
Operand
.Syntax,
7778
operation.
Operand
.Type, constantValue: operation.
Operand
.GetConstantValue());