3 overrides of GetEnclosingBinder
Microsoft.CodeAnalysis.VisualBasic (3)
Binding\MemberSemanticModel.vb (1)
90Friend NotOverridable Overloads Overrides Function GetEnclosingBinder(position As Integer) As Binder
Compilation\SpeculativeSemanticModelWithMemberModel.vb (1)
125Friend Overloads Overrides Function GetEnclosingBinder(position As Integer) As Binder
Compilation\SyntaxTreeSemanticModel.vb (1)
176Friend Overrides Function GetEnclosingBinder(position As Integer) As Binder
22 references to GetEnclosingBinder
Microsoft.CodeAnalysis.VisualBasic (17)
Compilation\SemanticModel.vb (17)
715Dim binder = Me.GetEnclosingBinder(position) 815Dim binder = Me.GetEnclosingBinder(position) 1116Dim binder As Binder = If(binderOpt, GetEnclosingBinder(boundNodes.LowestBoundNode.Syntax.SpanStart)) 1478Dim binder As Binder = If(binderOpt, GetEnclosingBinder(lowestBoundNode.Syntax.SpanStart)) 1826Dim binder = Me.GetEnclosingBinder(position) 2040Dim binder = Me.GetEnclosingBinder(position) 2075Dim binder = Me.GetEnclosingBinder(position) 2354Dim binder = Me.GetEnclosingBinder(position) 2384Dim binder As Binder = Me.GetEnclosingBinder(identifierSyntax.SpanStart) 2526Dim binder = TryCast(StripSemanticModelBinder(Me.GetEnclosingBinder(declarationSyntax.SpanStart)), BlockBaseBinder) 2710Dim enclosingBinder = StripSemanticModelBinder(Me.GetEnclosingBinder(declarationSyntax.SpanStart)) 2982Dim binder = Me.GetEnclosingBinder(position) 2994Dim binder = Me.GetEnclosingBinder(Root.SpanStart) ' should never return null. 3008Dim binder = Me.GetEnclosingBinder(Root.SpanStart) ' should never return null. 3022Dim binder = Me.GetEnclosingBinder(Root.SpanStart) ' should never return null. 3036Dim binder = Me.GetEnclosingBinder(Root.SpanStart) ' should never return null. 3437Dim binder = Me.GetEnclosingBinder(position)
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (4)
Binding\LookupTests.vb (1)
27Return DirectCast(compilation.GetSemanticModel(tree), VBSemanticModel).GetEnclosingBinder(position)
Compilation\SemanticModelLookupSymbolsAPITests.vb (3)
896Dim binder = DirectCast(model, VBSemanticModel).GetEnclosingBinder(position) 1088Dim binder = DirectCast(model, VBSemanticModel).GetEnclosingBinder(position) 1115Dim binder = DirectCast(model, VBSemanticModel).GetEnclosingBinder(position)
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (1)
SymbolsTests\Source\BindingsTests.vb (1)
25Dim binder = DirectCast(semanticModel, VBSemanticModel).GetEnclosingBinder(position)