command-line-api
command-line-api copied to clipboard
List<CliToken> tokenList should be renamed to List<CliToken> tokens
There are a few mentions of tokenList left in Tokenizer.Tokenize and they should be renamed to remove the type "List" so that the naming conforms to the conventions of the .NET Framework.
Also, where (CliSymbol Symbol, CliTokenType TokenType)> tokens is used, the word tokens should be changed to validTokens to avoid any confusion between the list of valid tokens and the list of tokens being built up.