7 references to FullWidth
Microsoft.CodeAnalysis (3)
Syntax\SyntaxNode.cs (2)
984
if (parent == null || parent.
FullWidth
!= node.
FullWidth
) break;
Syntax\SyntaxNodeOrToken.cs (1)
896
internal int FullWidth => _token?.FullWidth ?? _nodeOrParent?.
FullWidth
?? 0;
Microsoft.CodeAnalysis.CSharp (1)
Parser\Blender.cs (1)
122
var lastCharIndex = oldTree.
FullWidth
- 1;
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (3)
Parsing\RoundTrippingTests.cs (1)
59
var nodes = tree.GetCompilationUnitRoot().DescendantTokens(tk => tk.
FullWidth
> 0).ToList();
Syntax\SyntaxListTests.cs (1)
295
for (int position = 0; position < parsedArgumentList.
FullWidth
; position++)
Syntax\SyntaxNodeTests.cs (1)
3487
Assert.NotEqual(0, paramList.
FullWidth
);