8 references to IntoKeyword
Microsoft.CodeAnalysis.CSharp (4)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1765
=> node.Update(VisitToken(node.
IntoKeyword
), VisitToken(node.Identifier), (QueryBodySyntax?)Visit(node.Body) ?? throw new ArgumentNullException("body"));
_generated\2\Syntax.xml.Syntax.Generated.cs (3)
4979
if (intoKeyword != this.
IntoKeyword
|| identifier != this.Identifier || body != this.Body)
4990
public QueryContinuationSyntax WithIdentifier(SyntaxToken identifier) => Update(this.
IntoKeyword
, identifier, this.Body);
4991
public QueryContinuationSyntax WithBody(QueryBodySyntax body) => Update(this.
IntoKeyword
, this.Identifier, body);
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\Rules\QueryExpressionFormattingRule.cs (1)
149
AddAnchorIndentationOperation(list, continuation.
IntoKeyword
, continuation.GetLastToken(includeZeroWidth: true));
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
1880
return ((QueryContinuationSyntax)node).
IntoKeyword
.Span;
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\Rules\QueryExpressionFormattingRule.cs (1)
149
AddAnchorIndentationOperation(list, continuation.
IntoKeyword
, continuation.GetLastToken(includeZeroWidth: true));
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\Rules\QueryExpressionFormattingRule.cs (1)
149
AddAnchorIndentationOperation(list, continuation.
IntoKeyword
, continuation.GetLastToken(includeZeroWidth: true));