13 references to FullWidth
Microsoft.CodeAnalysis (3)
Syntax\SyntaxNode.cs (1)
1114
var fullWidth = element.
FullWidth
;
Syntax\SyntaxNodeOrToken.cs (2)
911
internal int EndPosition => _position + this.
FullWidth
;
942
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)
119
_changeDelta += node.
FullWidth
;
206
_newPosition += currentNodeOrToken.
FullWidth
;
224
if (nodeOrToken.
FullWidth
== 0)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (2)
Syntax\SyntaxListTests.cs (2)
387
Assert.Equal(child1.
FullWidth
, child2.
FullWidth
);
Microsoft.CodeAnalysis.VisualBasic (1)
Parser\Parser.vb (1)
243
If child.
FullWidth
<> 0 Then
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (3)
Syntax\SyntaxListTests.vb (2)
221
Assert.Equal(1, openParen.
FullWidth
)
228
Assert.Equal(1, item.
FullWidth
)
TestSyntaxNodes.vb (1)
2187
Assert.Equal(sN.
FullWidth
, cS.FullSpan.Length)