1 write to MoveNextArguments
Microsoft.CodeAnalysis (1)
Operations\Loops\ForEachLoopOperationInfo.cs (1)
67
MoveNextArguments
= moveNextArguments;
9 references to MoveNextArguments
Microsoft.CodeAnalysis (1)
Operations\ControlFlowGraphBuilder.cs (1)
4522
var moveNext = makeInvocationDroppingInstanceForStaticMethods(info.MoveNextMethod, enumeratorRef, info.
MoveNextArguments
);
Microsoft.CodeAnalysis.CSharp.IOperation.UnitTests (7)
IOperation\IOperationTests_IForEachLoopStatement.cs (7)
2814
Assert.Equal(3, op.Info.
MoveNextArguments
.Length);
2829
VerifyOperationTree(comp, op.Info.
MoveNextArguments
[0], @"IArgumentOperation (ArgumentKind.DefaultValue, Matching Parameter: s) (OperationKind.Argument, Type: null, IsImplicit) (Syntax: 'await forea ... }')
2834
VerifyOperationTree(comp, op.Info.
MoveNextArguments
[1], @"IArgumentOperation (ArgumentKind.DefaultValue, Matching Parameter: line) (OperationKind.Argument, Type: null, IsImplicit) (Syntax: 'await forea ... }')
2839
VerifyOperationTree(comp, op.Info.
MoveNextArguments
[2], @"IArgumentOperation (ArgumentKind.DefaultValue, Matching Parameter: r) (OperationKind.Argument, Type: null, IsImplicit) (Syntax: 'await forea ... }')
2946
Assert.Equal(2, op.Info.
MoveNextArguments
.Length);
2961
VerifyOperationTree(comp, op.Info.
MoveNextArguments
[0], @"IArgumentOperation (ArgumentKind.DefaultValue, Matching Parameter: s) (OperationKind.Argument, Type: null, IsImplicit) (Syntax: 'await forea ... }')
2966
VerifyOperationTree(comp, op.Info.
MoveNextArguments
[1], @"IArgumentOperation (ArgumentKind.DefaultValue, Matching Parameter: line) (OperationKind.Argument, Type: null, IsImplicit) (Syntax: 'await forea ... }')
Microsoft.CodeAnalysis.Test.Utilities (1)
Compilation\TestOperationVisitor.cs (1)
340
visitArguments(info.
MoveNextArguments
);