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); 14667Assert.Equal(1, op.Info.GetEnumeratorArguments.Length); 15008Assert.Equal(1, op.Info.GetEnumeratorArguments.Length); 15375Assert.Equal(1, op.Info.GetEnumeratorArguments.Length); 15718Assert.Equal(1, op.Info.GetEnumeratorArguments.Length); 16066Assert.Equal(1, op.Info.GetEnumeratorArguments.Length); 16504Assert.Equal(1, op.Info.GetEnumeratorArguments.Length); 18171Assert.Empty(op.Info.GetEnumeratorArguments); 18368Assert.Empty(op.Info.GetEnumeratorArguments); 18592Assert.Empty(op.Info.GetEnumeratorArguments); 18788Assert.Empty(op.Info.GetEnumeratorArguments); 18989Assert.Empty(op.Info.GetEnumeratorArguments); 19273Assert.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);