1 write to _index
System.CommandLine (1)
Parsing\ParseOperation.cs (1)
48
private void Advance() =>
_index
++;
3 references to _index
System.CommandLine (3)
Parsing\ParseOperation.cs (3)
46
private Token CurrentToken => _tokens[
_index
];
52
bool result =
_index
< _tokens.Count;
53
currentTokenType = result ? _tokens[
_index
].Type : (TokenType)(-1);