1 write to StartCharacter
Microsoft.CodeAnalysis.Razor.Workspaces (1)
SemanticTokens\SemanticRange.cs (1)
15
StartCharacter
= startCharacter;
15 references to StartCharacter
Microsoft.CodeAnalysis.Razor.Workspaces (15)
SemanticTokens\AbstractRazorSemanticTokensInfoService.cs (10)
278
var previousEndChar = lineDelta == 0 ? previousSemanticRange.
StartCharacter
: 0;
354
currentRange.
StartCharacter
== 0)
380
if (previousRange.
StartCharacter
== currentRange.
StartCharacter
)
386
if (previousRange.
StartCharacter
<= currentRange.
StartCharacter
&&
392
deltaStart = currentRange.
StartCharacter
- previousRange.
StartCharacter
;
398
deltaStart = currentRange.
StartCharacter
;
406
if (!sourceText.TryGetAbsoluteIndex(currentRange.StartLine, currentRange.
StartCharacter
, out var startPosition) ||
SemanticTokens\SemanticRange.cs (4)
57
=> new(new(StartLine,
StartCharacter
), new(EndLine, EndCharacter));
67
result =
StartCharacter
.CompareTo(other.
StartCharacter
);
101
=> $"[Kind: {Kind}, StartLine: {StartLine}, StartCharacter: {
StartCharacter
}, EndLine: {EndLine}, EndCharacter: {EndCharacter}]";
SemanticTokens\SemanticTokensVisitor.cs (1)
666
semanticRange.EndCharacter <= semanticRange.
StartCharacter
)