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