2 writes to _position
Microsoft.CodeAnalysis (2)
Syntax\SyntaxNodeOrToken.cs (2)
47
_position
= node.Position;
60
_position
= position;
6 references to _position
Microsoft.CodeAnalysis (6)
Syntax\SyntaxNodeOrToken.cs (6)
130
internal int Position =>
_position
;
257
return
_position
+ _token.GetLeadingTriviaWidth();
703
(_nodeOrParent == other._nodeOrParent && _token == other._token &&
_position
== other.
_position
&& _tokenIndex == other._tokenIndex) ==
897
internal int EndPosition =>
_position
+ this.FullWidth;
1009
var firstIndex = GetFirstChildIndexSpanningPosition(siblings,
_position
);