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)
22public readonly bool IsDone => Position >= _headerText.Length; 26var tokenKind = GetTokenKindAtPosition(_headerText, Position); 33if (_headerText[Position] == '\\') 61if (position < _headerText.Length) 63kind = GetTokenKindAtPosition(_headerText, position); 77kind = GetTokenKindAtPosition(_headerText, position); 131public readonly char CurrentCharacter => _headerText[Position]; 133public char EatCurrentCharacter() => _headerText[Position++]; 149public readonly char this[int position] => _headerText[position];