6 references to ScopeBinder
Microsoft.CodeAnalysis.CSharp (6)
Binder\Binder_Deconstruct.cs (1)
906var hasErrors = localSymbol.ScopeBinder.ValidateDeclarationNameConflictsInScope(localSymbol, diagnostics);
Binder\Binder_Expressions.cs (1)
3180localSymbol.ScopeBinder.ValidateDeclarationNameConflictsInScope(localSymbol, diagnostics);
Binder\Binder_Patterns.cs (1)
893hasErrors |= localSymbol.ScopeBinder.ValidateDeclarationNameConflictsInScope(localSymbol, diagnostics);
Binder\Binder_Statements.cs (1)
995bool nameConflict = localSymbol.ScopeBinder.ValidateDeclarationNameConflictsInScope(localSymbol, diagnostics);
Symbols\Source\SourceLocalSymbol.cs (2)
642private ForEachLoopBinder ForEachLoopBinder => (ForEachLoopBinder)ScopeBinder; 693Debug.Assert(this.ScopeBinder.GetBinder((ForEachVariableStatementSyntax)_deconstruction) == _nodeBinder);