7 references to FullWidth
Microsoft.CodeAnalysis (3)
Syntax\SyntaxNode.cs (1)
1121
var fullWidth = element.
FullWidth
;
Syntax\SyntaxNodeOrToken.cs (2)
898
internal int EndPosition => _position + this.
FullWidth
;
929
for (; r > 0 && list[r - 1].
FullWidth
== 0; r--)
Microsoft.CodeAnalysis.CSharp (4)
Parser\Blender.Cursor.cs (1)
55
return token.Kind() == SyntaxKind.EndOfFileToken || token.
FullWidth
!= 0;
Parser\Blender.Reader.cs (3)
116
_changeDelta += node.
FullWidth
;
203
_newPosition += currentNodeOrToken.
FullWidth
;
221
if (nodeOrToken.
FullWidth
== 0)