5 overrides of GetBinder
Microsoft.CodeAnalysis.VisualBasic (5)
Binding\BackstopBinder.vb (1)
42Public Overrides Function GetBinder(stmtList As SyntaxList(Of StatementSyntax)) As Binder
Binding\DeclarationInitializerBinder.vb (1)
83Public Overrides Function GetBinder(stmts As SyntaxList(Of StatementSyntax)) As Binder
Binding\ExecutableCodeBinder.vb (1)
163Public Overrides Function GetBinder(stmtList As SyntaxList(Of StatementSyntax)) As Binder
Binding\MemberSemanticModel.vb (1)
2048Public Overrides Function GetBinder(list As SyntaxList(Of StatementSyntax)) As Binder
Binding\NamedTypeBinder.vb (1)
47Public Overrides Function GetBinder(stmtList As SyntaxList(Of StatementSyntax)) As Binder
6 references to GetBinder
Microsoft.CodeAnalysis.VisualBasic (6)
Binding\Binder.vb (1)
320Return m_containingBinder.GetBinder(stmtList)
Binding\Binder_SelectCase.vb (1)
133Dim bodyBinder = GetBinder(statementsSyntax)
Binding\Binder_Statements.vb (1)
2072Dim stmtListBinder = Me.GetBinder(stmtList)
Binding\MemberSemanticModel.vb (2)
1278binder = memberBinder.GetBinder(body) 2049Dim binder As Binder = Me.ContainingBinder.GetBinder(list)
Binding\NamedTypeBinder.vb (1)
50Return If(_typeSymbol.IsScriptClass, Me, m_containingBinder.GetBinder(stmtList))