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)
7998
AddStatement(VisitRequired(operation.
Operand
));
8003
VisitAndCapture(operation.
Operand
, oldValueCaptureId);
8045
var valueCaptureRef = new FlowCaptureReferenceOperation(valueCaptureId, operation.
Operand
.Syntax,
8046
operation.
Operand
.Type, constantValue: operation.
Operand
.GetConstantValue());
8066
var oldInstance = new FlowCaptureReferenceOperation(oldValueCaptureId, operation.
Operand
.Syntax,
8067
operation.
Operand
.Type, constantValue: operation.
Operand
.GetConstantValue());
8076
var extraValueCaptureRef = new FlowCaptureReferenceOperation(extraValueCaptureId, operation.
Operand
.Syntax,
8077
operation.
Operand
.Type, constantValue: operation.
Operand
.GetConstantValue());