7 references to DoubleDash
aspire (3)
Commands\ParseResultHelper.cs (3)
75
if (token.Type == TokenType.
DoubleDash
)
144
if (token.Type == TokenType.
DoubleDash
)
392
if (token.Type == System.CommandLine.Parsing.TokenType.
DoubleDash
)
dotnet-aot (1)
parent\dotnet\Commands\Run\CommonRunHelpers.cs (1)
91
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);