24 references to Keys
Microsoft.CodeAnalysis.VisualBasic (12)
Binding\Binder_Query.vb (1)
1906
Dim keys As SeparatedSyntaxList(Of ExpressionRangeVariableSyntax) = groupBy.
Keys
Generated\Syntax.xml.Main.Generated.vb (1)
4579
Dim newKeys = VisitList(node.
Keys
)
Generated\Syntax.xml.Syntax.Generated.vb (7)
28945
return Update(groupKeyword, Me.Items, Me.ByKeyword, Me.
Keys
, Me.IntoKeyword, Me.AggregationVariables)
28970
return Update(Me.GroupKeyword, items, Me.ByKeyword, Me.
Keys
, Me.IntoKeyword, Me.AggregationVariables)
28992
return Update(Me.GroupKeyword, Me.Items, byKeyword, Me.
Keys
, Me.IntoKeyword, Me.AggregationVariables)
29017
Return Me.WithKeys(Me.
Keys
.AddRange(items))
29032
return Update(Me.GroupKeyword, Me.Items, Me.ByKeyword, Me.
Keys
, intoKeyword, Me.AggregationVariables)
29054
return Update(Me.GroupKeyword, Me.Items, Me.ByKeyword, Me.
Keys
, Me.IntoKeyword, aggregationVariables)
29119
If groupKeyword <> Me.GroupKeyword OrElse items <> Me.Items OrElse byKeyword <> Me.ByKeyword OrElse keys <> Me.
Keys
OrElse intoKeyword <> Me.IntoKeyword OrElse aggregationVariables <> Me.AggregationVariables Then
Syntax\LambdaUtilities.vb (3)
257
Return groupByClause.
Keys
.First.Expression
391
Return EnumerateExpressions(groupByClause.
Keys
)
546
Return expressionRangeVariable Is groupByClause.
Keys
.First OrElse
Microsoft.CodeAnalysis.VisualBasic.Features (10)
Completion\KeywordRecommenders\Queries\IntoKeywordRecommender.vb (1)
24
context.Position, context.TargetToken, Function(g) g.
Keys
.LastRangeExpression(), cancellationToken) Then
EditAndContinue\BreakpointSpans.vb (6)
405
If clause.
Keys
.Count = 0 Then
409
If position >= clause.
Keys
.First.SpanStart AndAlso position < clause.IntoKeyword.SpanStart Then
410
If clause.
Keys
.Count = 1 Then
411
Return CreateSpan(clause.
Keys
.Single.Expression)
414
Return TryCreateSpan(clause.
Keys
)
417
Return TextSpan.FromBounds(clause.
Keys
.First.SpanStart, clause.Span.End)
LambdaUtilities.vb (3)
257
Return groupByClause.
Keys
.First.Expression
391
Return EnumerateExpressions(groupByClause.
Keys
)
546
Return expressionRangeVariable Is groupByClause.
Keys
.First OrElse
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.vb (2)
21214
Assert.NotNull(objectUnderTest.
keys
)
21217
Dim withObj = objectUnderTest.WithGroupKeyword(objectUnderTest.GroupKeyword).WithItems(objectUnderTest.Items).WithByKeyword(objectUnderTest.ByKeyword).WithKeys(objectUnderTest.
Keys
).WithIntoKeyword(objectUnderTest.IntoKeyword).WithAggregationVariables(objectUnderTest.AggregationVariables)