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)
2961localSymbol.ScopeBinder.ValidateDeclarationNameConflictsInScope(localSymbol, diagnostics);
Binder\Binder_Patterns.cs (1)
884hasErrors |= localSymbol.ScopeBinder.ValidateDeclarationNameConflictsInScope(localSymbol, diagnostics);
Binder\Binder_Statements.cs (1)
998bool nameConflict = localSymbol.ScopeBinder.ValidateDeclarationNameConflictsInScope(localSymbol, diagnostics);
Symbols\Source\SourceLocalSymbol.cs (2)
626private ForEachLoopBinder ForEachLoopBinder => (ForEachLoopBinder)ScopeBinder; 677Debug.Assert(this.ScopeBinder.GetBinder((ForEachVariableStatementSyntax)_deconstruction) == _nodeBinder);