9 references to FullWidth
Microsoft.CodeAnalysis (3)
Syntax\SyntaxNode.cs (1)
1118
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)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (2)
Syntax\SyntaxListTests.cs (2)
395
Assert.Equal(child1.
FullWidth
, child2.
FullWidth
);