2 writes to _tokenIndex
Microsoft.CodeAnalysis (2)
Syntax\SyntaxNodeOrToken.cs (2)
50
_tokenIndex
= -1;
62
_tokenIndex
= index;
9 references to _tokenIndex
Microsoft.CodeAnalysis (9)
Syntax\SyntaxNodeOrToken.cs (9)
150
public bool IsNode =>
_tokenIndex
< 0;
163
return new SyntaxToken(_nodeOrParent, _token, this.Position,
_tokenIndex
);
704
(_nodeOrParent == other._nodeOrParent && _token == other._token && _position == other._position &&
_tokenIndex
== other.
_tokenIndex
) ==
705
(_nodeOrParent == other._nodeOrParent && _token == other._token &&
_tokenIndex
== other.
_tokenIndex
));
709
_tokenIndex
== other.
_tokenIndex
;
742
return Hash.Combine(_nodeOrParent, Hash.Combine(_token,
_tokenIndex
));