1 write to _syntax
Microsoft.CodeAnalysis.CSharp (1)
Binder\ForLoopBinder.cs (1)
25
_syntax
= syntax;
10 references to _syntax
Microsoft.CodeAnalysis.CSharp (10)
Binder\ForLoopBinder.cs (10)
33
if (
_syntax
.Declaration != null)
35
_syntax
.Declaration.Type.VisitRankSpecifiers((rankSpecifier, args) =>
46
foreach (var vdecl in
_syntax
.Declaration.Variables)
48
var localSymbol = MakeLocal(
_syntax
.Declaration, vdecl, LocalDeclarationKind.RegularVariable, allowScoped: true);
57
ExpressionVariableFinder.FindExpressionVariables(this, locals,
_syntax
.Initializers);
65
BoundForStatement result = BindForParts(
_syntax
, originalBinder, diagnostics);
73
if (
_syntax
.Declaration != null)
75
var type =
_syntax
.Declaration.Type.SkipScoped(out _);
142
if (
_syntax
== scopeDesignator)
159
return
_syntax
;