1 write to GetEnumeratorArguments
Microsoft.CodeAnalysis (1)
Operations\Loops\ForEachLoopOperationInfo.cs (1)
75GetEnumeratorArguments = getEnumeratorArguments;
26 references to GetEnumeratorArguments
Microsoft.CodeAnalysis (1)
Operations\ControlFlowGraphBuilder.cs (1)
4596info.GetEnumeratorArguments);
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (18)
RefStructInterfacesTests.cs (18)
7586Assert.Empty(op.Info.GetEnumeratorArguments); 7776Assert.Empty(op.Info.GetEnumeratorArguments); 7996Assert.Empty(op.Info.GetEnumeratorArguments); 8186Assert.Empty(op.Info.GetEnumeratorArguments); 8379Assert.Empty(op.Info.GetEnumeratorArguments); 8658Assert.Empty(op.Info.GetEnumeratorArguments); 14269Assert.Equal(1, op.Info.GetEnumeratorArguments.Length); 14610Assert.Equal(1, op.Info.GetEnumeratorArguments.Length); 14977Assert.Equal(1, op.Info.GetEnumeratorArguments.Length); 15320Assert.Equal(1, op.Info.GetEnumeratorArguments.Length); 15668Assert.Equal(1, op.Info.GetEnumeratorArguments.Length); 16106Assert.Equal(1, op.Info.GetEnumeratorArguments.Length); 17773Assert.Empty(op.Info.GetEnumeratorArguments); 17970Assert.Empty(op.Info.GetEnumeratorArguments); 18194Assert.Empty(op.Info.GetEnumeratorArguments); 18390Assert.Empty(op.Info.GetEnumeratorArguments); 18591Assert.Empty(op.Info.GetEnumeratorArguments); 18875Assert.Empty(op.Info.GetEnumeratorArguments);
Microsoft.CodeAnalysis.CSharp.IOperation.UnitTests (6)
IOperation\IOperationTests_IForEachLoopStatement.cs (6)
2809Assert.Equal(2, op.Info.GetEnumeratorArguments.Length); 2815VerifyOperationTree(comp, op.Info.GetEnumeratorArguments[0], @"IArgumentOperation (ArgumentKind.DefaultValue, Matching Parameter: s) (OperationKind.Argument, Type: null, IsImplicit) (Syntax: 'await forea ... }') 2820VerifyOperationTree(comp, op.Info.GetEnumeratorArguments[1], @"IArgumentOperation (ArgumentKind.DefaultValue, Matching Parameter: line) (OperationKind.Argument, Type: null, IsImplicit) (Syntax: 'await forea ... }') 2941Assert.Equal(2, op.Info.GetEnumeratorArguments.Length); 2947VerifyOperationTree(comp, op.Info.GetEnumeratorArguments[0], @"IArgumentOperation (ArgumentKind.DefaultValue, Matching Parameter: s) (OperationKind.Argument, Type: null, IsImplicit) (Syntax: 'await forea ... }') 2952VerifyOperationTree(comp, op.Info.GetEnumeratorArguments[1], @"IArgumentOperation (ArgumentKind.DefaultValue, Matching Parameter: line) (OperationKind.Argument, Type: null, IsImplicit) (Syntax: 'await forea ... }')
Microsoft.CodeAnalysis.Test.Utilities (1)
Compilation\TestOperationVisitor.cs (1)
340visitArguments(info.GetEnumeratorArguments);