20 references to SimpleAssignmentOperation
Microsoft.CodeAnalysis (16)
Generated\Operations.Generated.cs (1)
10449
return new
SimpleAssignmentOperation
(internalOperation.IsRef, Visit(internalOperation.Target), Visit(internalOperation.Value), internalOperation.OwningSemanticModel, internalOperation.Syntax, internalOperation.Type, internalOperation.OperationConstantValue, internalOperation.IsImplicit);
Operations\ControlFlowGraphBuilder.cs (15)
2098
return PopStackFrame(frame, new
SimpleAssignmentOperation
(operation.IsRef, PopOperand(), value, null, operation.Syntax, operation.Type, operation.GetConstantValue(), IsImplicit(operation)));
3212
new
SimpleAssignmentOperation
(
3250
IOperation whenNullAssignment = new
SimpleAssignmentOperation
(isRef: false, OperationCloner.CloneOperation(locationCapture), whenNullValue, semanticModel: null,
3792
AddStatement(new
SimpleAssignmentOperation
(
4566
return new
SimpleAssignmentOperation
(isRef: local.RefKind != RefKind.None,
4590
return new
SimpleAssignmentOperation
(isRef: false, // In C# this is an error case and VB doesn't support ref locals
4892
AddStatement(new
SimpleAssignmentOperation
(isRef: false, // Loop control variable
5208
AddStatement(new
SimpleAssignmentOperation
(isRef: false,
5260
AddStatement(new
SimpleAssignmentOperation
(isRef: false,
5311
AddStatement(new
SimpleAssignmentOperation
(isRef: false,
5780
var assignment = new
SimpleAssignmentOperation
(isRef: localSymbol.IsRef, localRef, initializer, semanticModel: null, assignmentSyntax, localRef.Type, constantValue: null, isImplicit: true);
5998
result = new
SimpleAssignmentOperation
(assignmentOperation.IsRef, left, right, semanticModel: null, assignmentOperation.Syntax,
6204
var visitedAssignment = new
SimpleAssignmentOperation
(isRef: simpleAssignment.IsRef, visitedTarget, visitedValue,
7041
var assignment = new
SimpleAssignmentOperation
(isRef: false, rewrittenTarget, VisitRequired(initializer.Value), semanticModel: null,
7801
return new
SimpleAssignmentOperation
(isRef: false, target, capturedValue,
Microsoft.CodeAnalysis.CSharp (2)
Operations\CSharpOperationFactory.cs (1)
1274
return new
SimpleAssignmentOperation
(isRef, target, value, _semanticModel, syntax, type, constantValue, isImplicit);
Operations\CSharpOperationFactory_Methods.cs (1)
387
var assignment = new
SimpleAssignmentOperation
(isRef, target, value, _semanticModel, assignmentSyntax, assignmentType, value.GetConstantValue(), isImplicitAssignment);
Microsoft.CodeAnalysis.VisualBasic (2)
Operations\VisualBasicOperationFactory.vb (1)
377
Return New
SimpleAssignmentOperation
(isRef, target, value, _semanticModel, syntax, type, constantValue, isImplicit)
Operations\VisualBasicOperationFactory_Methods.vb (1)
351
Dim assignment = New
SimpleAssignmentOperation
(isRef, target, value, _semanticModel, syntax, type, constantValue, isImplicitAssignment)