24 references to IntoKeyword
Microsoft.CodeAnalysis.CSharp (10)
Binder\Binder_QueryErrors.cs (1)
190
clauseKind = SyntaxFacts.GetText(SyntaxKind.
IntoKeyword
);
Parser\LanguageParser.cs (5)
13519
case SyntaxKind.
IntoKeyword
:
13647
this.CurrentToken.ContextualKind == SyntaxKind.
IntoKeyword
13700
into: this.CurrentToken.ContextualKind == SyntaxKind.
IntoKeyword
13806
Debug.Assert(this.CurrentToken.ContextualKind == SyntaxKind.
IntoKeyword
);
13808
this.EatContextualToken(SyntaxKind.
IntoKeyword
),
Syntax\SyntaxKindFacts.cs (4)
1189
case SyntaxKind.
IntoKeyword
:
1245
case SyntaxKind.
IntoKeyword
:
1275
return SyntaxKind.
IntoKeyword
;
1715
case SyntaxKind.
IntoKeyword
:
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
288
case SyntaxKind.
IntoKeyword
:
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTokenExtensions.cs (1)
301
token.GetPreviousToken(includeSkipped: true).Kind() == SyntaxKind.
IntoKeyword
)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (9)
Generated\Syntax.Test.xml.Generated.cs (8)
242
=> InternalSyntaxFactory.JoinIntoClause(InternalSyntaxFactory.Token(SyntaxKind.
IntoKeyword
), InternalSyntaxFactory.Identifier("Identifier"));
260
=> InternalSyntaxFactory.QueryContinuation(InternalSyntaxFactory.Token(SyntaxKind.
IntoKeyword
), InternalSyntaxFactory.Identifier("Identifier"), GenerateQueryBody());
1659
Assert.Equal(SyntaxKind.
IntoKeyword
, node.IntoKeyword.Kind);
1727
Assert.Equal(SyntaxKind.
IntoKeyword
, node.IntoKeyword.Kind);
10458
=> SyntaxFactory.JoinIntoClause(SyntaxFactory.Token(SyntaxKind.
IntoKeyword
), SyntaxFactory.Identifier("Identifier"));
10476
=> SyntaxFactory.QueryContinuation(SyntaxFactory.Token(SyntaxKind.
IntoKeyword
), SyntaxFactory.Identifier("Identifier"), GenerateQueryBody());
11875
Assert.Equal(SyntaxKind.
IntoKeyword
, node.IntoKeyword.Kind());
11943
Assert.Equal(SyntaxKind.
IntoKeyword
, node.IntoKeyword.Kind());
Parsing\ExpressionParsingTests.cs (1)
2389
Assert.Equal(SyntaxKind.
IntoKeyword
, qs.Body.Continuation.IntoKeyword.Kind());
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
Simplification\Reducers\CSharpEscapingReducer.cs (1)
92
case SyntaxKind.
IntoKeyword
:
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
288
case SyntaxKind.
IntoKeyword
:
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTokenExtensions.cs (1)
301
token.GetPreviousToken(includeSkipped: true).Kind() == SyntaxKind.
IntoKeyword
)