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)
4685
if (whereKeyword != this.
WhereKeyword
|| condition != this.Condition)
4696
public WhereClauseSyntax WithCondition(ExpressionSyntax condition) => Update(this.
WhereKeyword
, condition);
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
1895
return ((WhereClauseSyntax)node).
WhereKeyword
.Span;
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (5)
Generated\Syntax.Test.xml.Generated.cs (2)
12029
Assert.Equal(SyntaxKind.WhereKeyword, node.
WhereKeyword
.Kind());
12031
var newNode = node.WithWhereKeyword(node.
WhereKeyword
).WithCondition(node.Condition);
Parsing\ExpressionParsingTests.cs (3)
2432
Assert.NotEqual(default, ws.
WhereKeyword
);
2433
Assert.Equal(SyntaxKind.WhereKeyword, ws.
WhereKeyword
.Kind());
2434
Assert.False(ws.
WhereKeyword
.IsMissing);