7 references to DoubleDash
dotnet (3)
Commands\Run\CommonRunHelpers.cs (1)
88
int doubleDashIndex = parseResult.Tokens.ToList().FindIndex(static token => token.Type == TokenType.
DoubleDash
);
Commands\Run\RunCommand.cs (2)
800
parseResult.Tokens.TakeWhile(static t => t.Type != TokenType.
DoubleDash
)
826
.TakeWhile(static t => t.Type != TokenType.
DoubleDash
)
dotnet-aot (1)
src\sdk\src\Cli\dotnet\Commands\Run\CommonRunHelpers.cs (1)
88
int doubleDashIndex = parseResult.Tokens.ToList().FindIndex(static token => token.Type == TokenType.
DoubleDash
);
System.CommandLine (3)
Parsing\ParseOperation.cs (2)
117
if (currentTokenType != TokenType.
DoubleDash
&&
396
if (CurrentToken.Type == TokenType.
DoubleDash
)
Parsing\StringExtensions.cs (1)
191
Token DoubleDash() => new("--", TokenType.
DoubleDash
, default, i);