8 references to IntoKeyword
Microsoft.CodeAnalysis.CSharp (3)
Syntax.xml.Main.Generated.cs (1)
1735
=> node.Update(VisitToken(node.
IntoKeyword
), VisitToken(node.Identifier));
Syntax.xml.Syntax.Generated.cs (2)
4643
if (intoKeyword != this.
IntoKeyword
|| identifier != this.Identifier)
4654
public JoinIntoClauseSyntax WithIdentifier(SyntaxToken identifier) => Update(this.
IntoKeyword
, identifier);
Microsoft.CodeAnalysis.CSharp.Features (1)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
1889
return ((JoinIntoClauseSyntax)node).
IntoKeyword
.Span;
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (4)
Generated\Syntax.Test.xml.Generated.cs (2)
12018
Assert.Equal(SyntaxKind.IntoKeyword, node.
IntoKeyword
.Kind());
12020
var newNode = node.WithIntoKeyword(node.
IntoKeyword
).WithIdentifier(node.Identifier);
Parsing\ExpressionParsingTests.cs (2)
2971
Assert.NotEqual(default, js.Into.
IntoKeyword
);
2972
Assert.False(js.Into.
IntoKeyword
.IsMissing);