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