17 references to ForEachStatementInfo
Microsoft.CodeAnalysis.CSharp (1)
Compilation\MemberSemanticModel.cs (1)
987
return new
ForEachStatementInfo
(
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (16)
Compilation\ForEachStatementInfoTests.cs (16)
52
EqualityTesting.AssertEqual(new
ForEachStatementInfo
(isAsync: true, ge1, mn1, cur1, disp1, e1, conv1, conv1), new
ForEachStatementInfo
(isAsync: true, ge1, mn1, cur1, disp1, e1, conv1, conv1));
53
EqualityTesting.AssertNotEqual(new
ForEachStatementInfo
(isAsync: true, ge2, mn1, cur1, disp1, e1, conv1, conv1), new
ForEachStatementInfo
(isAsync: true, ge1, mn1, cur1, disp1, e1, conv1, conv1));
54
EqualityTesting.AssertNotEqual(new
ForEachStatementInfo
(isAsync: true, ge1, mn2, cur1, disp1, e1, conv1, conv1), new
ForEachStatementInfo
(isAsync: true, ge1, mn1, cur1, disp1, e1, conv1, conv1));
55
EqualityTesting.AssertNotEqual(new
ForEachStatementInfo
(isAsync: true, ge1, mn1, cur2, disp1, e1, conv1, conv1), new
ForEachStatementInfo
(isAsync: true, ge1, mn1, cur1, disp1, e1, conv1, conv1));
56
EqualityTesting.AssertNotEqual(new
ForEachStatementInfo
(isAsync: true, ge1, mn1, cur1, disp2, e1, conv1, conv1), new
ForEachStatementInfo
(isAsync: true, ge1, mn1, cur1, disp1, e1, conv1, conv1));
57
EqualityTesting.AssertNotEqual(new
ForEachStatementInfo
(isAsync: true, ge1, mn1, cur1, disp1, e1, conv2, conv1), new
ForEachStatementInfo
(isAsync: true, ge1, mn1, cur1, disp1, e1, conv1, conv1));
58
EqualityTesting.AssertNotEqual(new
ForEachStatementInfo
(isAsync: true, ge1, mn1, cur1, disp1, e1, conv1, conv2), new
ForEachStatementInfo
(isAsync: true, ge1, mn1, cur1, disp1, e1, conv1, conv1));
59
EqualityTesting.AssertNotEqual(new
ForEachStatementInfo
(isAsync: true, ge1, mn1, cur1, disp1, e1, conv1, conv1), new
ForEachStatementInfo
(isAsync: false, ge1, mn1, cur1, disp1, e1, conv1, conv1));