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