37 references to IntoKeyword
Microsoft.CodeAnalysis.CSharp (20)
Binder\Binder_QueryErrors.cs (1)
190clauseKind = SyntaxFacts.GetText(SyntaxKind.IntoKeyword);
Parser\LanguageParser.cs (5)
14001case SyntaxKind.IntoKeyword: 14125this.CurrentToken.ContextualKind == SyntaxKind.IntoKeyword 14178into: this.CurrentToken.ContextualKind == SyntaxKind.IntoKeyword 14287Debug.Assert(this.CurrentToken.ContextualKind == SyntaxKind.IntoKeyword); 14289this.EatContextualToken(SyntaxKind.IntoKeyword),
Syntax.xml.Internal.Generated.cs (4)
29997if (intoKeyword.Kind != SyntaxKind.IntoKeyword) throw new ArgumentException(nameof(intoKeyword)); 30130if (intoKeyword.Kind != SyntaxKind.IntoKeyword) throw new ArgumentException(nameof(intoKeyword)); 35385if (intoKeyword.Kind != SyntaxKind.IntoKeyword) throw new ArgumentException(nameof(intoKeyword)); 35518if (intoKeyword.Kind != SyntaxKind.IntoKeyword) throw new ArgumentException(nameof(intoKeyword));
Syntax.xml.Main.Generated.cs (6)
3548if (intoKeyword.Kind() != SyntaxKind.IntoKeyword) throw new ArgumentException(nameof(intoKeyword)); 3555=> SyntaxFactory.JoinIntoClause(SyntaxFactory.Token(SyntaxKind.IntoKeyword), identifier); 3559=> SyntaxFactory.JoinIntoClause(SyntaxFactory.Token(SyntaxKind.IntoKeyword), SyntaxFactory.Identifier(identifier)); 3645if (intoKeyword.Kind() != SyntaxKind.IntoKeyword) throw new ArgumentException(nameof(intoKeyword)); 3653=> SyntaxFactory.QueryContinuation(SyntaxFactory.Token(SyntaxKind.IntoKeyword), identifier, body); 3657=> SyntaxFactory.QueryContinuation(SyntaxFactory.Token(SyntaxKind.IntoKeyword), SyntaxFactory.Identifier(identifier), body);
Syntax\SyntaxKindFacts.cs (4)
1257case SyntaxKind.IntoKeyword: 1314case SyntaxKind.IntoKeyword: 1344return SyntaxKind.IntoKeyword; 1786case SyntaxKind.IntoKeyword:
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
298case SyntaxKind.IntoKeyword:
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTokenExtensions.cs (1)
301token.GetPreviousToken(includeSkipped: true).Kind() == SyntaxKind.IntoKeyword)
Microsoft.CodeAnalysis.CSharp.Features (1)
Completion\KeywordRecommenders\IntoKeywordRecommender.cs (1)
13internal sealed class IntoKeywordRecommender() : AbstractSyntacticSingleKeywordRecommender(SyntaxKind.IntoKeyword)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (9)
Generated\Syntax.Test.xml.Generated.cs (8)
245=> InternalSyntaxFactory.JoinIntoClause(InternalSyntaxFactory.Token(SyntaxKind.IntoKeyword), InternalSyntaxFactory.Identifier("Identifier")); 263=> InternalSyntaxFactory.QueryContinuation(InternalSyntaxFactory.Token(SyntaxKind.IntoKeyword), InternalSyntaxFactory.Identifier("Identifier"), GenerateQueryBody()); 1682Assert.Equal(SyntaxKind.IntoKeyword, node.IntoKeyword.Kind); 1750Assert.Equal(SyntaxKind.IntoKeyword, node.IntoKeyword.Kind); 10635=> SyntaxFactory.JoinIntoClause(SyntaxFactory.Token(SyntaxKind.IntoKeyword), SyntaxFactory.Identifier("Identifier")); 10653=> SyntaxFactory.QueryContinuation(SyntaxFactory.Token(SyntaxKind.IntoKeyword), SyntaxFactory.Identifier("Identifier"), GenerateQueryBody()); 12072Assert.Equal(SyntaxKind.IntoKeyword, node.IntoKeyword.Kind()); 12140Assert.Equal(SyntaxKind.IntoKeyword, node.IntoKeyword.Kind());
Parsing\ExpressionParsingTests.cs (1)
2389Assert.Equal(SyntaxKind.IntoKeyword, qs.Body.Continuation.IntoKeyword.Kind());
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
Simplification\Reducers\CSharpEscapingReducer.cs (1)
73case SyntaxKind.IntoKeyword:
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
298case SyntaxKind.IntoKeyword:
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTokenExtensions.cs (1)
301token.GetPreviousToken(includeSkipped: true).Kind() == SyntaxKind.IntoKeyword)
Roslyn.Diagnostics.CSharp.Analyzers (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
298case SyntaxKind.IntoKeyword:
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTokenExtensions.cs (1)
301token.GetPreviousToken(includeSkipped: true).Kind() == SyntaxKind.IntoKeyword)