2 writes to _tokenIndex
Microsoft.CodeAnalysis (2)
Syntax\SyntaxNodeOrToken.cs (2)
49
_tokenIndex
= -1;
61
_tokenIndex
= index;
9 references to _tokenIndex
Microsoft.CodeAnalysis (9)
Syntax\SyntaxNodeOrToken.cs (9)
149
public bool IsNode =>
_tokenIndex
< 0;
162
return new SyntaxToken(_nodeOrParent, _token, this.Position,
_tokenIndex
);
703
(_nodeOrParent == other._nodeOrParent && _token == other._token && _position == other._position &&
_tokenIndex
== other.
_tokenIndex
) ==
704
(_nodeOrParent == other._nodeOrParent && _token == other._token &&
_tokenIndex
== other.
_tokenIndex
));
708
_tokenIndex
== other.
_tokenIndex
;
741
return Hash.Combine(_nodeOrParent, Hash.Combine(_token,
_tokenIndex
));