Base:
property
Locals
Microsoft.CodeAnalysis.CSharp.Binder.Locals
28 references to Locals
Microsoft.CodeAnalysis.CSharp (28)
Binder\BlockBinder.cs (1)
70
return this.
Locals
;
Binder\CatchClauseBinder.cs (1)
49
return this.
Locals
;
Binder\EmbeddedStatementBinder.cs (1)
73
return this.
Locals
;
Binder\ExpressionListVariableBinder.cs (1)
45
return this.
Locals
;
Binder\ExpressionVariableBinder.cs (1)
38
return this.
Locals
;
Binder\FixedStatementBinder.cs (1)
64
return this.
Locals
;
Binder\ForEachLoopBinder.cs (3)
33
return (_syntax.Kind() == SyntaxKind.ForEachStatement) ? (SourceLocalSymbol)this.
Locals
[0] : null;
51
return this.
Locals
;
424
ImmutableArray<LocalSymbol> iterationVariables = this.
Locals
;
Binder\ForLoopBinder.cs (3)
128
Debug.Assert(this.
Locals
== this.GetDeclaredLocalsForScope(node));
130
this.
Locals
,
144
return this.
Locals
;
Binder\LocalScopeBinder.cs (4)
94
if (_lazyLocalsMap == null && this.
Locals
.Length > 0)
96
_lazyLocalsMap = BuildMap(this.
Locals
);
389
foreach (var local in this.
Locals
)
510
declaredInThisScope |= newSymbolKind == SymbolKind.Local && this.
Locals
.Contains((LocalSymbol)newSymbol);
Binder\LockBinder.cs (1)
70
Debug.Assert(this.
Locals
.IsDefaultOrEmpty);
Binder\SimpleProgramBinder.cs (1)
91
return this.
Locals
;
Binder\SimpleProgramUnitBinder.cs (1)
28
return _scope.
Locals
;
Binder\SwitchBinder.cs (1)
332
return this.
Locals
;
Binder\SwitchExpressionArmBinder.cs (1)
41
ImmutableArray<LocalSymbol> locals = _armScopeBinder.
Locals
;
Binder\UsingStatementBinder.cs (2)
175
usingBinderOpt.
Locals
,
310
return this.
Locals
;
Binder\WhileBinder.cs (5)
34
Debug.Assert(this.
Locals
== this.GetDeclaredLocalsForScope(node));
35
return new BoundWhileStatement(node, this.
Locals
, condition, body, this.BreakLabel, this.ContinueLabel);
44
Debug.Assert(this.
Locals
== this.GetDeclaredLocalsForScope(node));
45
return new BoundDoStatement(node, this.
Locals
, condition, body, this.BreakLabel, this.ContinueLabel);
73
return this.
Locals
;