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