1 write to Entries
Microsoft.CodeAnalysis (1)
Syntax\LineDirectiveMap.cs (1)
44
Entries
= CreateEntryMap(syntaxTree, directives);
9 references to Entries
Microsoft.CodeAnalysis (9)
Syntax\LineDirectiveMap.cs (9)
119
return this.
Entries
.Any(static e => e.State == PositionState.Hidden);
127
return this.
Entries
[r];
133
int r =
Entries
.BinarySearch(new LineMappingEntry(lineNumber));
170
/// The caller is expected to not call this if <see cref="
Entries
"/> is empty.
174
Debug.Assert(
Entries
.Length > 1);
176
var current =
Entries
[0];
185
for (int i = 1; i <
Entries
.Length; i++)
187
var next =
Entries
[i];
232
yield return CreateLineMapping(current, unmappedEndLine, lineLength, currentIndex:
Entries
.Length - 1);