2 writes to _index
Text.Analyzers (2)
src\RoslynAnalyzers\Utilities\Compiler\WordParser.cs (2)
558char c = _text[_index++]; 596char c = _text[--_index];
3 references to _index
Text.Analyzers (3)
src\RoslynAnalyzers\Utilities\Compiler\WordParser.cs (3)
556while (_index < _text.Length) 574for (int index = _index; index < _text.Length; index++) 594while (_index >= 0)