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