4 instantiations of WhereClauseSyntax
Microsoft.CodeAnalysis.CSharp (4)
_generated\1\Syntax.xml.Internal.Generated.cs (4)
7587
=> new
WhereClauseSyntax
(this.Kind, this.whereKeyword, this.condition, diagnostics, GetAnnotations());
7590
=> new
WhereClauseSyntax
(this.Kind, this.whereKeyword, this.condition, GetDiagnostics(), annotations);
30445
var result = new
WhereClauseSyntax
(SyntaxKind.WhereClause, whereKeyword, condition, this.context);
35867
var result = new
WhereClauseSyntax
(SyntaxKind.WhereClause, whereKeyword, condition);
13 references to WhereClauseSyntax
Microsoft.CodeAnalysis.CSharp (13)
_generated\1\Syntax.xml.Internal.Generated.cs (11)
7569
public
WhereClauseSyntax
Update(SyntaxToken whereKeyword, ExpressionSyntax condition)
7573
var
newNode = SyntaxFactory.WhereClause(whereKeyword, condition);
27495
public virtual TResult VisitWhereClause(
WhereClauseSyntax
node) => this.DefaultVisit(node);
27749
public virtual void VisitWhereClause(
WhereClauseSyntax
node) => this.DefaultVisit(node);
28161
public override CSharpSyntaxNode VisitWhereClause(
WhereClauseSyntax
node)
30433
public
WhereClauseSyntax
WhereClause(SyntaxToken whereKeyword, ExpressionSyntax condition)
30443
if (cached != null) return (
WhereClauseSyntax
)cached;
30445
var
result = new WhereClauseSyntax(SyntaxKind.WhereClause, whereKeyword, condition, this.context);
35855
public static
WhereClauseSyntax
WhereClause(SyntaxToken whereKeyword, ExpressionSyntax condition)
35865
if (cached != null) return (
WhereClauseSyntax
)cached;
35867
var
result = new WhereClauseSyntax(SyntaxKind.WhereClause, whereKeyword, condition);
_generated\2\Syntax.xml.Syntax.Generated.cs (1)
4773
public SyntaxToken WhereKeyword => new SyntaxToken(this, ((InternalSyntax.
WhereClauseSyntax
)this.Green).whereKeyword, Position, 0);
Parser\LanguageParser.cs (1)
14325
private
WhereClauseSyntax
ParseWhereClause()