8 references to Width
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\DefaultRazorIntermediateNodeLoweringPhase.cs (1)
905
source.Length + item.
Width
,
Language\Legacy\ImplicitExpressionEditHandler.cs (1)
88
if (changeRelativePosition > 0 && target.
Width
> 0)
Language\Legacy\TagHelperBlockRewriter.cs (1)
113
var location = new SourceSpan(codeBlock.GetSourceLocation(source), codeBlock.
Width
);
Language\Legacy\TagHelperParseTreeRewriter.cs (1)
493
new SourceSpan(tagBlock.GetSourceLocation(_source), tagBlock.
Width
),
Language\SourceChange.cs (1)
105
if (node.
Width
== 0)
Language\Syntax\SyntaxNode.cs (1)
21
public int EndPosition => Position +
Width
;
Language\Syntax\SyntaxNodeExtensions.cs (1)
123
return new SourceSpan(location.FilePath, location.AbsoluteIndex, location.LineIndex, location.CharacterIndex, node.
Width
, lineCount, endLocation.Character);
Language\Syntax\SyntaxNodeOrToken.cs (1)
86
internal int Width => _token?.Width ?? _nodeOrParent?.
Width
?? 0;