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