2 overrides of InKeyword
Microsoft.CodeAnalysis.CSharp (2)
Syntax.xml.Syntax.Generated.cs (2)
7754public override SyntaxToken InKeyword => new SyntaxToken(this, ((InternalSyntax.ForEachStatementSyntax)this.Green).inKeyword, GetChildPosition(6), GetChildIndex(6)); 7861public override SyntaxToken InKeyword => new SyntaxToken(this, ((InternalSyntax.ForEachVariableStatementSyntax)this.Green).inKeyword, GetChildPosition(5), GetChildIndex(5));
5 references to InKeyword
Microsoft.CodeAnalysis.CSharp (2)
Compilation\MemberSemanticModel.cs (1)
418var start = stmt.Kind() == SyntaxKind.ForEachVariableStatement ? foreachStmt.InKeyword : foreachStmt.OpenParenToken;
Lowering\Instrumentation\DebugInfoInjector.cs (1)
348syntax.InKeyword.Span);
Microsoft.CodeAnalysis.CSharp.Features (3)
EditAndContinue\BreakpointSpans.cs (2)
673else if (position < forEachStatement.InKeyword.FullSpan.Start) 687return CreateSpan(forEachStatement.InKeyword);
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
319position < node.InKeyword.SpanStart ? ForEachPart.VariableDeclaration :