6 references to DoubleDash
dotnet (3)
Commands\Run\RunCommand.cs (3)
846parseResult.Tokens.TakeWhile(static t => t.Type != TokenType.DoubleDash) 872.TakeWhile(static t => t.Type != TokenType.DoubleDash) 989if (parseResult.Tokens[i].Type == TokenType.DoubleDash)
System.CommandLine (3)
Parsing\ParseOperation.cs (2)
117if (currentTokenType != TokenType.DoubleDash && 396if (CurrentToken.Type == TokenType.DoubleDash)
Parsing\StringExtensions.cs (1)
191Token DoubleDash() => new("--", TokenType.DoubleDash, default, i);