24 references to Items
Microsoft.CodeAnalysis.VisualBasic (15)
Binding\Binder_Query.vb (3)
882
Return groupBy.
Items
.Count = 0
1839
If groupBy.
Items
.Count = 0 Then
1861
Dim items As SeparatedSyntaxList(Of ExpressionRangeVariableSyntax) = groupBy.
Items
Generated\Syntax.xml.Main.Generated.vb (1)
4575
Dim newItems = VisitList(node.
Items
)
Generated\Syntax.xml.Syntax.Generated.vb (7)
28945
return Update(groupKeyword, Me.
Items
, Me.ByKeyword, Me.Keys, Me.IntoKeyword, Me.AggregationVariables)
28974
Return Me.WithItems(Me.
Items
.AddRange(items))
28992
return Update(Me.GroupKeyword, Me.
Items
, byKeyword, Me.Keys, Me.IntoKeyword, Me.AggregationVariables)
29013
return Update(Me.GroupKeyword, Me.
Items
, Me.ByKeyword, keys, Me.IntoKeyword, Me.AggregationVariables)
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 (4)
253
Return groupByClause.
Items
.First.Expression
291
(rangeVariable.SpanStart = groupByClause.ByKeyword.SpanStart AndAlso rangeVariable Is groupByClause.
Items
.Last) Then
389
Return EnumerateExpressions(groupByClause.
Items
)
547
expressionRangeVariable Is groupByClause.
Items
.FirstOrDefault
Microsoft.CodeAnalysis.VisualBasic.Features (8)
Completion\KeywordRecommenders\Queries\GroupByKeywordRecommender.vb (1)
28
context.Position, context.TargetToken, Function(groupBy) groupBy.
Items
.LastRangeExpression(), cancellationToken) Then
EditAndContinue\BreakpointSpans.vb (3)
398
If clause.
Items
.Count = 1 Then
399
Return CreateSpan(clause.
Items
.Single.Expression)
402
Return TryCreateSpan(clause.
Items
)
LambdaUtilities.vb (4)
253
Return groupByClause.
Items
.First.Expression
291
(rangeVariable.SpanStart = groupByClause.ByKeyword.SpanStart AndAlso rangeVariable Is groupByClause.
Items
.Last) Then
389
Return EnumerateExpressions(groupByClause.
Items
)
547
expressionRangeVariable Is groupByClause.
Items
.FirstOrDefault
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
21217
Dim withObj = objectUnderTest.WithGroupKeyword(objectUnderTest.GroupKeyword).WithItems(objectUnderTest.
Items
).WithByKeyword(objectUnderTest.ByKeyword).WithKeys(objectUnderTest.Keys).WithIntoKeyword(objectUnderTest.IntoKeyword).WithAggregationVariables(objectUnderTest.AggregationVariables)