2 writes to _index
Microsoft.CodeAnalysis (2)
Syntax\SyntaxTokenList.cs (2)
34
_index
= index;
42
_index
= 0;
7 references to _index
Microsoft.CodeAnalysis (7)
Syntax\SyntaxTokenList.cs (5)
125
return new SyntaxToken(_parent, Node.GetSlot(index), Position + Node.GetSlotOffset(index),
_index
+ index);
130
return new SyntaxToken(_parent, Node, Position,
_index
);
487
return Node == other.Node && _parent == other._parent &&
_index
== other.
_index
;
505
return Hash.Combine(Node,
_index
);
Syntax\SyntaxTokenList.Enumerator.cs (1)
64
_baseIndex = list.
_index
;
Syntax\SyntaxTokenList.Reversed.cs (1)
89
_baseIndex = list.
_index
;