20 instantiations of SimpleAssignmentOperation
Microsoft.CodeAnalysis (16)
Operations\ControlFlowGraphBuilder.cs (15)
2098return PopStackFrame(frame, new SimpleAssignmentOperation(operation.IsRef, PopOperand(), value, null, operation.Syntax, operation.Type, operation.GetConstantValue(), IsImplicit(operation)));
3212new SimpleAssignmentOperation(
3250IOperation whenNullAssignment = new SimpleAssignmentOperation(isRef: false, OperationCloner.CloneOperation(locationCapture), whenNullValue, semanticModel: null,
3792AddStatement(new SimpleAssignmentOperation(
4566return new SimpleAssignmentOperation(isRef: local.RefKind != RefKind.None,
4590return new SimpleAssignmentOperation(isRef: false, // In C# this is an error case and VB doesn't support ref locals
4892AddStatement(new SimpleAssignmentOperation(isRef: false, // Loop control variable
5208AddStatement(new SimpleAssignmentOperation(isRef: false,
5260AddStatement(new SimpleAssignmentOperation(isRef: false,
5311AddStatement(new SimpleAssignmentOperation(isRef: false,
5780var assignment = new SimpleAssignmentOperation(isRef: localSymbol.IsRef, localRef, initializer, semanticModel: null, assignmentSyntax, localRef.Type, constantValue: null, isImplicit: true);
5998result = new SimpleAssignmentOperation(assignmentOperation.IsRef, left, right, semanticModel: null, assignmentOperation.Syntax,
6204var visitedAssignment = new SimpleAssignmentOperation(isRef: simpleAssignment.IsRef, visitedTarget, visitedValue,
7041var assignment = new SimpleAssignmentOperation(isRef: false, rewrittenTarget, VisitRequired(initializer.Value), semanticModel: null,
7801return new SimpleAssignmentOperation(isRef: false, target, capturedValue,
Microsoft.CodeAnalysis.CSharp (2)
Microsoft.CodeAnalysis.VisualBasic (2)
8 references to SimpleAssignmentOperation
Microsoft.CodeAnalysis (7)
Operations\ControlFlowGraphBuilder.cs (5)
5780var assignment = new SimpleAssignmentOperation(isRef: localSymbol.IsRef, localRef, initializer, semanticModel: null, assignmentSyntax, localRef.Type, constantValue: null, isImplicit: true);
6204var visitedAssignment = new SimpleAssignmentOperation(isRef: simpleAssignment.IsRef, visitedTarget, visitedValue,
7041var assignment = new SimpleAssignmentOperation(isRef: false, rewrittenTarget, VisitRequired(initializer.Value), semanticModel: null,
7749var assignment = makeAssignment(property, valueCaptureRef, operation);
7790SimpleAssignmentOperation makeAssignment(IPropertySymbol property, IOperation capturedValue, WithOperation operation)
Microsoft.CodeAnalysis.CSharp (1)