5 references to DoubleDash
dotnet (2)
Commands\Run\RunCommand.cs (2)
843parseResult.Tokens.TakeWhile(static t => t.Type != TokenType.DoubleDash) 869.TakeWhile(static t => t.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);