2 writes to _index
Microsoft.CodeAnalysis (2)
Syntax\SyntaxTokenList.cs (2)
36
_index
= index;
44
_index
= 0;
7 references to _index
Microsoft.CodeAnalysis (7)
Syntax\SyntaxTokenList.cs (5)
135
return new SyntaxToken(_parent, Node.GetSlot(index), Position + Node.GetSlotOffset(index),
_index
+ index);
140
return new SyntaxToken(_parent, Node, Position,
_index
);
497
return Node == other.Node && _parent == other._parent &&
_index
== other.
_index
;
515
return Hash.Combine(Node,
_index
);
Syntax\SyntaxTokenList.Enumerator.cs (1)
64
_baseIndex = list.
_index
;
Syntax\SyntaxTokenList.Reversed.cs (1)
89
_baseIndex = list.
_index
;