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