18 references to SimpleAssignmentOperation
Microsoft.CodeAnalysis (16)
Generated\Operations.Generated.cs (1)
11069return new SimpleAssignmentOperation(internalOperation.IsRef, Visit(internalOperation.Target), Visit(internalOperation.Value), internalOperation.OwningSemanticModel, internalOperation.Syntax, internalOperation.Type, internalOperation.OperationConstantValue, internalOperation.IsImplicit);
Operations\ControlFlowGraphBuilder.cs (15)
2106return PopStackFrame(frame, new SimpleAssignmentOperation(operation.IsRef, PopOperand(), value, null, operation.Syntax, operation.Type, operation.GetConstantValue(), IsImplicit(operation))); 3231new SimpleAssignmentOperation( 3269IOperation whenNullAssignment = new SimpleAssignmentOperation(isRef: false, OperationCloner.CloneOperation(locationCapture), whenNullValue, semanticModel: null, 3811AddStatement(new SimpleAssignmentOperation( 4665return new SimpleAssignmentOperation(isRef: local.RefKind != RefKind.None, 4689return new SimpleAssignmentOperation(isRef: false, // In C# this is an error case and VB doesn't support ref locals 4991AddStatement(new SimpleAssignmentOperation(isRef: false, // Loop control variable 5307AddStatement(new SimpleAssignmentOperation(isRef: false, 5359AddStatement(new SimpleAssignmentOperation(isRef: false, 5410AddStatement(new SimpleAssignmentOperation(isRef: false, 5879var assignment = new SimpleAssignmentOperation(isRef: localSymbol.IsRef, localRef, initializer, semanticModel: null, assignmentSyntax, localRef.Type, constantValue: null, isImplicit: true); 6098result = new SimpleAssignmentOperation(assignmentOperation.IsRef, left, right, semanticModel: null, assignmentOperation.Syntax, 6405var visitedAssignment = new SimpleAssignmentOperation(isRef: simpleAssignment.IsRef, visitedTarget, visitedValue, 7303var assignment = new SimpleAssignmentOperation(isRef: false, rewrittenTarget, VisitRequired(initializer.Value), semanticModel: null, 8097return new SimpleAssignmentOperation(isRef: false, target, capturedValue,
Microsoft.CodeAnalysis.CSharp (2)
Operations\CSharpOperationFactory.cs (1)
1391return new SimpleAssignmentOperation(isRef, target, value, _semanticModel, syntax, type, constantValue, isImplicit);
Operations\CSharpOperationFactory_Methods.cs (1)
467var assignment = new SimpleAssignmentOperation(isRef, target, value, _semanticModel, assignmentSyntax, assignmentType, value.GetConstantValue(), isImplicitAssignment);