1 write to _headerText
Microsoft.CodeAnalysis.CodeStyle (1)
SectionMatcher.Lexer.cs (1)
18
_headerText
= headerText;
9 references to _headerText
Microsoft.CodeAnalysis.CodeStyle (9)
SectionMatcher.Lexer.cs (9)
22
public readonly bool IsDone => Position >=
_headerText
.Length;
26
var tokenKind = GetTokenKindAtPosition(
_headerText
, Position);
33
if (
_headerText
[Position] == '\\')
61
if (position <
_headerText
.Length)
63
kind = GetTokenKindAtPosition(
_headerText
, position);
77
kind = GetTokenKindAtPosition(
_headerText
, position);
131
public readonly char CurrentCharacter =>
_headerText
[Position];
133
public char EatCurrentCharacter() =>
_headerText
[Position++];
149
public readonly char this[int position] =>
_headerText
[position];