1 override of Lookup
Microsoft.CodeAnalysis.VisualBasic (1)
Binding\Binder_Query.vb (1)
3991Public Overrides Sub Lookup(lookupResult As LookupResult, name As String, arity As Integer, options As LookupOptions, <[In], Out> ByRef useSiteInfo As CompoundUseSiteInfo(Of AssemblySymbol))
21 references to Lookup
Microsoft.CodeAnalysis.VisualBasic (14)
Binding\Binder_Attributes.vb (1)
164Lookup(lookupResult, name, 0, options, useSiteInfo)
Binding\Binder_Expressions.vb (2)
2466Me.Lookup(result, name, arity, options, useSiteInfo) 3551Me.Lookup(result, labelName, arity:=0, options:=LookupOptions.LabelsOnly, useSiteInfo:=CompoundUseSiteInfo(Of AssemblySymbol).Discarded)
Binding\Binder_Statements.vb (3)
902Lookup(result, labelName, 0, LookupOptions.LabelsOnly, useSiteInfo:=CompoundUseSiteInfo(Of AssemblySymbol).Discarded) 1749Lookup(result, identifier.ValueText, 0, Nothing, useSiteInfo:=CompoundUseSiteInfo(Of AssemblySymbol).Discarded) 2960Lookup(result, name, 0, LookupOptions.AllMethodsOfAnyArity, useSiteInfo)
Binding\Binder_Symbols.vb (2)
857binder.Lookup(lookupResult, idText, 0, LookupOptions.NamespacesOrTypesOnly, useSiteInfo) 886binder.Lookup(lookupResult, idText, arity, LookupOptions.NamespacesOrTypesOnly, useSiteInfo)
Binding\DocumentationCommentCrefBinder.vb (1)
730Me.Lookup(result, name, arity, If(typeOrNamespaceOnly, options Or LookupOptions.NamespacesOrTypesOnly, options), useSiteInfo)
Binding\DocumentationCommentCrefBinder_Compat.vb (1)
263Me.Lookup(lookupResult, name, arity, options, useSiteInfo)
Binding\DocumentationCommentTypeParamRefBinder.vb (1)
37Me.Lookup(lookupResult, identifier.Identifier.ValueText, 0, options, useSiteInfo)
Binding\ForOrForEachBlockBinder.vb (1)
82ContainingBinder.Lookup(result, identifier.ValueText, 0, LookupOptions.AllMethodsOfAnyArity, useSiteInfo:=CompoundUseSiteInfo(Of AssemblySymbol).Discarded)
Compilation\SemanticModel.vb (2)
1965binder.Lookup(result, name, realArity, options, useSiteInfo:=CompoundUseSiteInfo(Of AssemblySymbol).Discarded) 2391binder.Lookup(lookupResult, identifierSyntax.Identifier.ValueText, 0, Nothing, useSiteInfo:=CompoundUseSiteInfo(Of AssemblySymbol).Discarded)
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (6)
Binding\MethodBodyBindingTests.vb (6)
88meth1Context.Lookup(lr, "x", 0, Nothing, Nothing) 93meth1Context.Lookup(lr, "TParam1", 0, LookupOptions.NamespacesOrTypesOnly, Nothing) 98meth1Context.Lookup(lr, "TParam2", 0, LookupOptions.NamespacesOrTypesOnly, Nothing) 103meth1Context.Lookup(lr, "Q", 0, LookupOptions.NamespacesOrTypesOnly, Nothing) 114meth2Context.Lookup(lr, "y", 0, Nothing, Nothing) 119meth2Context.Lookup(lr, "Q", 0, LookupOptions.NamespacesOrTypesOnly, Nothing)
Microsoft.CodeAnalysis.VisualBasic.Test.Utilities (1)
Extensions.vb (1)
412this.Lookup(lookupResult, name, arity, options, useSiteInfo)