9 references to WhereKeyword
Microsoft.CodeAnalysis.CSharp (3)
Syntax.xml.Main.Generated.cs (1)
1738=> node.Update(VisitToken(node.WhereKeyword), (ExpressionSyntax?)Visit(node.Condition) ?? throw new ArgumentNullException("condition"));
Syntax.xml.Syntax.Generated.cs (2)
4685if (whereKeyword != this.WhereKeyword || condition != this.Condition) 4696public WhereClauseSyntax WithCondition(ExpressionSyntax condition) => Update(this.WhereKeyword, condition);
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
1895return ((WhereClauseSyntax)node).WhereKeyword.Span;
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (5)
Generated\Syntax.Test.xml.Generated.cs (2)
12029Assert.Equal(SyntaxKind.WhereKeyword, node.WhereKeyword.Kind()); 12031var newNode = node.WithWhereKeyword(node.WhereKeyword).WithCondition(node.Condition);
Parsing\ExpressionParsingTests.cs (3)
2432Assert.NotEqual(default, ws.WhereKeyword); 2433Assert.Equal(SyntaxKind.WhereKeyword, ws.WhereKeyword.Kind()); 2434Assert.False(ws.WhereKeyword.IsMissing);