24 references to IntoKeyword
Microsoft.CodeAnalysis.CSharp (10)
Binder\Binder_QueryErrors.cs (1)
190
clauseKind = SyntaxFacts.GetText(SyntaxKind.
IntoKeyword
);
Parser\LanguageParser.cs (5)
13639
case SyntaxKind.
IntoKeyword
:
13767
this.CurrentToken.ContextualKind == SyntaxKind.
IntoKeyword
13820
into: this.CurrentToken.ContextualKind == SyntaxKind.
IntoKeyword
13926
Debug.Assert(this.CurrentToken.ContextualKind == SyntaxKind.
IntoKeyword
);
13928
this.EatContextualToken(SyntaxKind.
IntoKeyword
),
Syntax\SyntaxKindFacts.cs (4)
1192
case SyntaxKind.
IntoKeyword
:
1249
case SyntaxKind.
IntoKeyword
:
1279
return SyntaxKind.
IntoKeyword
;
1721
case SyntaxKind.
IntoKeyword
:
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
291
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());
1665
Assert.Equal(SyntaxKind.
IntoKeyword
, node.IntoKeyword.Kind);
1733
Assert.Equal(SyntaxKind.
IntoKeyword
, node.IntoKeyword.Kind);
10549
=> SyntaxFactory.JoinIntoClause(SyntaxFactory.Token(SyntaxKind.
IntoKeyword
), SyntaxFactory.Identifier("Identifier"));
10567
=> SyntaxFactory.QueryContinuation(SyntaxFactory.Token(SyntaxKind.
IntoKeyword
), SyntaxFactory.Identifier("Identifier"), GenerateQueryBody());
11972
Assert.Equal(SyntaxKind.
IntoKeyword
, node.IntoKeyword.Kind());
12040
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)
291
case SyntaxKind.
IntoKeyword
:
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTokenExtensions.cs (1)
301
token.GetPreviousToken(includeSkipped: true).Kind() == SyntaxKind.
IntoKeyword
)