3 references to Any
Microsoft.CodeAnalysis.Razor.Compiler (3)
Language\Syntax\SyntaxTokenList.cs (2)
122public SyntaxToken First() => Any() ? this[0] : throw new InvalidOperationException(); 123public SyntaxToken Last() => Any() ? this[^1] : throw new InvalidOperationException();
Language\Syntax\SyntaxTokenList.Reversed.cs (1)
52if (list.Any())