Implemented interface member:
property
Operand
Microsoft.CodeAnalysis.Operations.IWithOperation.Operand
1 write to Operand
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
10027
Operand
= SetParentOperation(operand, this);
17 references to Operand
Microsoft.CodeAnalysis (17)
Generated\Operations.Generated.cs (6)
10036
(
Operand
is null ? 0 : 1) +
10041
0 when
Operand
!= null
10042
=>
Operand
,
10052
if (
Operand
!= null) return (true, 0, 0);
10072
if (
Operand
!= null) return (true, 0, 0);
11339
return new WithOperation(Visit(internalOperation.
Operand
), internalOperation.CloneMethod, Visit(internalOperation.Initializer), internalOperation.OwningSemanticModel, internalOperation.Syntax, internalOperation.Type, internalOperation.IsImplicit);
Operations\ControlFlowGraphBuilder.cs (11)
7965
AddStatement(VisitRequired(operation.
Operand
));
7970
VisitAndCapture(operation.
Operand
, oldValueCaptureId);
8012
var valueCaptureRef = new FlowCaptureReferenceOperation(valueCaptureId, operation.
Operand
.Syntax,
8013
operation.
Operand
.Type, constantValue: operation.
Operand
.GetConstantValue());
8033
var oldInstance = new FlowCaptureReferenceOperation(oldValueCaptureId, operation.
Operand
.Syntax,
8034
operation.
Operand
.Type, constantValue: operation.
Operand
.GetConstantValue());
8043
var extraValueCaptureRef = new FlowCaptureReferenceOperation(extraValueCaptureId, operation.
Operand
.Syntax,
8044
operation.
Operand
.Type, constantValue: operation.
Operand
.GetConstantValue());