Implemented interface member:
property
Operand
Microsoft.CodeAnalysis.Operations.IWithOperation.Operand
1 write to Operand
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10065
Operand
= SetParentOperation(operand, this);
17 references to Operand
Microsoft.CodeAnalysis (17)
Generated\Operations.Generated.cs (6)
10074
(
Operand
is null ? 0 : 1) +
10079
0 when
Operand
!= null
10080
=>
Operand
,
10090
if (
Operand
!= null) return (true, 0, 0);
10110
if (
Operand
!= null) return (true, 0, 0);
11409
return new WithOperation(Visit(internalOperation.
Operand
), internalOperation.CloneMethod, Visit(internalOperation.Initializer), internalOperation.OwningSemanticModel, internalOperation.Syntax, internalOperation.Type, internalOperation.IsImplicit);
Operations\ControlFlowGraphBuilder.cs (11)
7995
AddStatement(VisitRequired(operation.
Operand
));
8000
VisitAndCapture(operation.
Operand
, oldValueCaptureId);
8042
var valueCaptureRef = new FlowCaptureReferenceOperation(valueCaptureId, operation.
Operand
.Syntax,
8043
operation.
Operand
.Type, constantValue: operation.
Operand
.GetConstantValue());
8063
var oldInstance = new FlowCaptureReferenceOperation(oldValueCaptureId, operation.
Operand
.Syntax,
8064
operation.
Operand
.Type, constantValue: operation.
Operand
.GetConstantValue());
8073
var extraValueCaptureRef = new FlowCaptureReferenceOperation(extraValueCaptureId, operation.
Operand
.Syntax,
8074
operation.
Operand
.Type, constantValue: operation.
Operand
.GetConstantValue());