6 references to First
Microsoft.AspNetCore.Razor.Utilities.Shared.UnitTests (5)
ReadOnlyListExtensionsTests.cs (5)
98var exception1 = Assert.Throws<InvalidOperationException>(() => readOnlyList.First(IsOdd)); 110Assert.Equal(19, readOnlyList.First(IsOdd)); 117Assert.Equal(19, readOnlyList.First(IsOdd)); 122var exception3 = Assert.Throws<InvalidOperationException>(() => readOnlyList.First(IsEven)); 134Assert.Equal(42, readOnlyList.First(IsEven));
Microsoft.CodeAnalysis.Razor.Workspaces (1)
Hover\HoverFactory.cs (1)
135var attribute = attributes.First(a => a.Span.IntersectsWith(absoluteIndex));