33 writes to Value
Microsoft.CodeAnalysis (33)
Collections\ArrayElement.cs (1)
42
array[i].
Value
= items[i];
Syntax\GreenNode.cs (2)
927
array[i].
Value
= select(list[i]);
949
array[i].
Value
= select(list[i]);
Syntax\InternalSyntax\SyntaxList.cs (3)
78
array[i].
Value
= node;
127
tmp[left.SlotCount].
Value
= right;
134
tmp[0].
Value
= left;
Syntax\InternalSyntax\SyntaxList.WithThreeChildren.cs (3)
57
array[offset].
Value
= _child0;
58
array[offset + 1].
Value
= _child1;
59
array[offset + 2].
Value
= _child2;
Syntax\InternalSyntax\SyntaxList.WithTwoChildren.cs (2)
50
array[offset].
Value
= _child0;
51
array[offset + 1].
Value
= _child1;
Syntax\InternalSyntax\SyntaxList`1.cs (1)
132
array[arrayOffset + i].
Value
= GetRequiredItem(i + offset);
Syntax\InternalSyntax\SyntaxListBuilder.cs (3)
39
_nodes[index].
Value
= value;
63
_nodes[Count++].
Value
= item;
129
_nodes[Count].
Value
= null;
Syntax\InternalSyntax\SyntaxListPool.cs (2)
32
_freeList[_freeIndex].
Value
= null;
76
_freeList[_freeIndex].
Value
= item;
Syntax\SyntaxList.SeparatedWithManyChildren.cs (1)
27
return this.GetRedElement(ref _children[i >> 1].
Value
, i);
Syntax\SyntaxList.SeparatedWithManyWeakChildren.cs (1)
28
result = GetWeakRedElement(ref this._children[i >> 1].
Value
, i);
Syntax\SyntaxList.WithManyChildren.cs (1)
23
return this.GetRedElement(ref _children[index].
Value
, index);
Syntax\SyntaxList.WithManyWeakChildren.cs (1)
47
return GetWeakRedElement(ref _children[index].
Value
, index);
Syntax\SyntaxList`1.cs (1)
38
copy[i].
Value
= nodes[i].Green;
Syntax\SyntaxListBuilder.cs (5)
42
_nodes[Count++].
Value
= item;
59
_nodes[j].
Value
= items[i].Green;
94
_nodes[dst].
Value
= list.ItemInternal(i)!.Green;
128
_nodes[dst].
Value
= list[i].UnderlyingNode;
184
tmp[i].
Value
= _nodes[i].Value!;
Syntax\SyntaxNodeOrTokenList.cs (2)
94
copy[i].
Value
= nodesAndTokens[i].UnderlyingNode!;
357
new ArrayElement<GreenNode> {
Value
= newGreen}
Syntax\SyntaxNodeOrTokenListBuilder.cs (1)
159
tmp[i].
Value
= _nodes[i]!;
Syntax\SyntaxTokenList.cs (1)
85
copy[i].
Value
= tokens[i].Node!;
Syntax\SyntaxTriviaList.cs (1)
91
copy[i].
Value
= trivias[i].UnderlyingNode!;
Syntax\SyntaxTriviaListBuilder.cs (1)
158
tmp[i].
Value
= _nodes[i].UnderlyingNode!;
19 references to Value
Microsoft.CodeAnalysis (19)
Collections\ArrayElement.cs (2)
17
return element.
Value
;
59
array[i] = items[i].
Value
;
Syntax\InternalSyntax\SyntaxList.WithLotsOfChildren.cs (1)
56
offset += children[i].
Value
.FullWidth;
Syntax\InternalSyntax\SyntaxListBuilder.cs (2)
92
Debug.Assert(_nodes[i].
Value
!= null);
152
if (_nodes[i].
Value
!.RawKind == kind)
Syntax\InternalSyntax\SyntaxListPool.cs (1)
31
item = _freeList[_freeIndex].
Value
!;
Syntax\SyntaxList.SeparatedWithManyChildren.cs (1)
38
return _children[i >> 1].
Value
;
Syntax\SyntaxList.SeparatedWithManyWeakChildren.cs (1)
41
var weak = this._children[i >> 1].
Value
;
Syntax\SyntaxList.WithManyWeakChildren.cs (2)
34
childPosition += greenChildren[i].
Value
.FullWidth;
53
_children[index].
Value
?.TryGetTarget(out value);
Syntax\SyntaxListBuilder.cs (9)
72
if (_nodes[i].
Value
== null)
159
if (_nodes[i].
Value
!.RawKind == kind)
175
return _nodes[0].
Value
;
177
return InternalSyntax.SyntaxList.List(_nodes[0].
Value
!, _nodes[1].
Value
!);
179
return InternalSyntax.SyntaxList.List(_nodes[0].
Value
!, _nodes[1].
Value
!, _nodes[2].
Value
!);
184
tmp[i].Value = _nodes[i].
Value
!;