1 override of Locals
Microsoft.CodeAnalysis.CSharp (1)
Binder\LocalScopeBinder.cs (1)
35internal sealed override ImmutableArray<LocalSymbol> Locals
5 references to Locals
Microsoft.CodeAnalysis.CSharp (5)
Binder\Binder.cs (1)
939var locals = string.Join(", ", scope.Locals.SelectAsArray(s => s.Name));
Compilation\MemberSemanticModel.cs (1)
696foreach (var local in binder.Locals)
Symbols\Source\SourceLocalSymbol.cs (3)
77/// Binder that owns the scope for the local, the one that returns it in its <see cref="Binder.Locals"/> array. 124/// Binder that owns the scope for the local, the one that returns it in its <see cref="Binder.Locals"/> array. 188/// Binder that owns the scope for the local, the one that returns it in its <see cref="Binder.Locals"/> array.