49 references to FromKeyword
Microsoft.CodeAnalysis.CSharp (15)
Binder\Binder_QueryErrors.cs (1)
201clauseKind = SyntaxFacts.GetText(SyntaxKind.FromKeyword);
Parser\LanguageParser.cs (9)
7902((IdentifierNameSyntax)parameter.Type).Identifier.ContextualKind == SyntaxKind.FromKeyword) 9981return this.IsTrueIdentifier() || this.CurrentToken.ContextualKind == SyntaxKind.FromKeyword; 10345else if (this.CurrentToken.ContextualKind == SyntaxKind.FromKeyword && IsInQuery) 12628case SyntaxKind.FromKeyword: 12644return this.CurrentToken.ContextualKind == SyntaxKind.FromKeyword && 12706fc = this.AddError(fc, ErrorCode.WRN_PrecedenceInversion, SyntaxFacts.GetText(SyntaxKind.FromKeyword)); 12723case SyntaxKind.FromKeyword: 12764Debug.Assert(this.CurrentToken.ContextualKind == SyntaxKind.FromKeyword); 12765var @from = this.EatContextualToken(SyntaxKind.FromKeyword);
Syntax\SyntaxKindFacts.cs (4)
1153case SyntaxKind.FromKeyword: 1207case SyntaxKind.FromKeyword: 1235return SyntaxKind.FromKeyword; 1673case SyntaxKind.FromKeyword:
Syntax\SyntaxNormalizer.cs (1)
279if ((nextToken.IsKind(SyntaxKind.FromKeyword) && nextToken.Parent.IsKind(SyntaxKind.FromClause)) ||
Microsoft.CodeAnalysis.CSharp.CodeStyle (4)
CSharpSyntaxFacts.cs (1)
287case SyntaxKind.FromKeyword:
ElasticTriviaFormattingRule.cs (1)
360if ((currentToken.Kind() == SyntaxKind.FromKeyword && currentToken.Parent.IsKind(SyntaxKind.FromClause)) ||
FormattingHelpers.cs (1)
382return token.Kind() == SyntaxKind.FromKeyword &&
QueryExpressionFormattingRule.cs (1)
149case SyntaxKind.FromKeyword:
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTreeExtensions.cs\SyntaxTreeExtensions.cs (1)
1834if (token.IsKindOrHasMatchingText(SyntaxKind.FromKeyword) &&
Microsoft.CodeAnalysis.CSharp.Features (5)
Completion\CompletionProviders\CSharpSuggestionModeCompletionProvider.cs (1)
69else if (token.IsKindOrHasMatchingText(SyntaxKind.FromKeyword) || token.IsKindOrHasMatchingText(SyntaxKind.JoinKeyword))
Completion\KeywordRecommenders\FromKeywordRecommender.cs (1)
13: base(SyntaxKind.FromKeyword)
Completion\KeywordRecommenders\InKeywordRecommender.cs (1)
91if (token.GetPreviousToken(includeSkipped: true).IsKindOrHasMatchingText(SyntaxKind.FromKeyword))
ConvertLinq\ConvertForEachToLinqQuery\AbstractConverter.cs (1)
102fromKeyword: SyntaxFactory.Token(SyntaxKind.FromKeyword)
GenerateMember\GenerateVariable\CSharpGenerateVariableService.cs (1)
51return contextualKind is SyntaxKind.FromKeyword or
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (17)
Generated\Syntax.Test.xml.Generated.cs (4)
221=> InternalSyntaxFactory.FromClause(InternalSyntaxFactory.Token(SyntaxKind.FromKeyword), null, InternalSyntaxFactory.Identifier("Identifier"), InternalSyntaxFactory.Token(SyntaxKind.InKeyword), GenerateIdentifierName()); 1552Assert.Equal(SyntaxKind.FromKeyword, node.FromKeyword.Kind); 10197=> SyntaxFactory.FromClause(SyntaxFactory.Token(SyntaxKind.FromKeyword), default(TypeSyntax), SyntaxFactory.Identifier("Identifier"), SyntaxFactory.Token(SyntaxKind.InKeyword), GenerateIdentifierName()); 11528Assert.Equal(SyntaxKind.FromKeyword, node.FromKeyword.Kind());
Parsing\ExpressionParsingTests.cs (2)
2305Assert.Equal(SyntaxKind.FromKeyword, fs.FromKeyword.Kind()); 4783N(SyntaxKind.FromKeyword);
Parsing\NullableParsingTests.cs (1)
1217N(SyntaxKind.FromKeyword);
Parsing\PatternParsingTests.cs (1)
350N(SyntaxKind.FromKeyword);
Parsing\ScriptParsingTests.cs (8)
8154N(SyntaxKind.FromKeyword); 8311N(SyntaxKind.FromKeyword); 8836N(SyntaxKind.FromKeyword); 8892N(SyntaxKind.FromKeyword); 8952N(SyntaxKind.FromKeyword); 9012N(SyntaxKind.FromKeyword); 9076N(SyntaxKind.FromKeyword); 9127N(SyntaxKind.FromKeyword);
Parsing\StatementAttributeParsingTests.cs (1)
5671N(SyntaxKind.FromKeyword);
Microsoft.CodeAnalysis.CSharp.Workspaces (7)
Classification\SyntaxClassification\NameSyntaxClassifier.cs (1)
320identifierName.Identifier.HasMatchingText(SyntaxKind.FromKeyword) &&
CSharpSyntaxFacts.cs (1)
287case SyntaxKind.FromKeyword:
ElasticTriviaFormattingRule.cs (1)
360if ((currentToken.Kind() == SyntaxKind.FromKeyword && currentToken.Parent.IsKind(SyntaxKind.FromClause)) ||
FormattingHelpers.cs (1)
382return token.Kind() == SyntaxKind.FromKeyword &&
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ContextQuery\SyntaxTreeExtensions.cs\SyntaxTreeExtensions.cs (1)
1834if (token.IsKindOrHasMatchingText(SyntaxKind.FromKeyword) &&
QueryExpressionFormattingRule.cs (1)
149case SyntaxKind.FromKeyword:
Simplification\Reducers\CSharpEscapingReducer.cs (1)
89case SyntaxKind.FromKeyword: