4 instantiations of WhereClauseSyntax
Microsoft.CodeAnalysis.VisualBasic (4)
Generated\Syntax.xml.Internal.Generated.vb (1)
26471Return new Microsoft.CodeAnalysis.VisualBasic.Syntax.WhereClauseSyntax(Me, parent, startLocation)
Generated\Syntax.xml.Main.Generated.vb (2)
4532Return New WhereClauseSyntax(node.Kind, node.Green.GetDiagnostics, node.Green.GetAnnotations, newWhereKeyword, newCondition) 38277Return New WhereClauseSyntax(SyntaxKind.WhereClause, Nothing, Nothing, DirectCast(whereKeyword.Node, InternalSyntax.KeywordSyntax), condition)
Generated\Syntax.xml.Syntax.Generated.vb (1)
28563Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.WhereClauseSyntax(kind, errors, annotations, whereKeyword, DirectCast(condition.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.ExpressionSyntax)), Nothing, 0)
28 references to WhereClauseSyntax
Microsoft.CodeAnalysis.VisualBasic (15)
Binding\Binder_Query.vb (2)
119source = BindWhereClause(source, DirectCast(current, WhereClauseSyntax), diagnostics) 2242where As WhereClauseSyntax,
Binding\MemberSemanticModel.vb (1)
1376Dim where = DirectCast(node, WhereClauseSyntax)
Generated\Syntax.xml.Main.Generated.vb (5)
545Public Overridable Function VisitWhereClause(ByVal node As WhereClauseSyntax) As TResult 1280Public Overridable Sub VisitWhereClause(ByVal node As WhereClauseSyntax) 4523Public Overrides Function VisitWhereClause(ByVal node As WhereClauseSyntax) As SyntaxNode 38159Public Shared Function WhereClause(whereKeyword As SyntaxToken, condition As ExpressionSyntax) As WhereClauseSyntax 38287Public Shared Function WhereClause(condition As ExpressionSyntax) As WhereClauseSyntax
Generated\Syntax.xml.Syntax.Generated.vb (3)
28580Public Shadows Function WithWhereKeyword(whereKeyword as SyntaxToken) As WhereClauseSyntax 28598Public Shadows Function WithCondition(condition as ExpressionSyntax) As WhereClauseSyntax 28639Public Function Update(whereKeyword As SyntaxToken, condition As ExpressionSyntax) As WhereClauseSyntax
Syntax\LambdaUtilities.vb (1)
494lambdaBody = DirectCast(node, WhereClauseSyntax).Condition
Syntax\SyntaxNodeExtensions.vb (1)
347Return DirectCast(syntax, WhereClauseSyntax).WhereKeyword
VisualBasicExtensions.vb (2)
1638''' <term><see cref="WhereClauseSyntax"/></term> 1639''' <description>Returns Where method associated with <see cref="WhereClauseSyntax"/>.</description>
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (2)
SyntaxTreeExtensions.vb (2)
432targetToken.IsChildToken(Of WhereClauseSyntax)(Function(whereClause) whereClause.WhereKeyword) OrElse 961Dim whereClause = TryCast(queryClause, WhereClauseSyntax)
Microsoft.CodeAnalysis.VisualBasic.Features (4)
EditAndContinue\BreakpointSpans.vb (2)
195Return TryCreateSpanForWhereClause(DirectCast(node, WhereClauseSyntax)) 392Private Function TryCreateSpanForWhereClause(clause As WhereClauseSyntax) As TextSpan?
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (1)
1693Return DirectCast(node, WhereClauseSyntax).WhereKeyword.Span
LambdaUtilities.vb (1)
494lambdaBody = DirectCast(node, WhereClauseSyntax).Condition
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (3)
Semantics\QueryExpressions.vb (1)
2625Dim node = tree.GetRoot().DescendantNodes().OfType(Of WhereClauseSyntax)().Single()
Semantics\QueryExpressions_SemanticModel.vb (2)
926Dim node9 As WhereClauseSyntax = CompilationUtils.FindBindingText(Of WhereClauseSyntax)(compilation, "a.vb", 9)
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
16545Private Shared Function GenerateRedWhereClause() As WhereClauseSyntax
Microsoft.CodeAnalysis.VisualBasic.Workspaces (2)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\Extensions\ContextQuery\SyntaxTreeExtensions.vb\SyntaxTreeExtensions.vb (2)
432targetToken.IsChildToken(Of WhereClauseSyntax)(Function(whereClause) whereClause.WhereKeyword) OrElse 961Dim whereClause = TryCast(queryClause, WhereClauseSyntax)
Microsoft.VisualStudio.LanguageServices.VisualBasic (1)
Help\VisualBasicHelpContextService.Visitor.vb (1)
732Public Overrides Sub VisitWhereClause(node As WhereClauseSyntax)