4 overrides of GetSyntaxReference
Microsoft.CodeAnalysis.VisualBasic (4)
Binding\BackstopBinder.vb (1)
92Public Overrides Function GetSyntaxReference(node As VisualBasicSyntaxNode) As SyntaxReference
Binding\ProjectImportsBinder.vb (1)
35Public Overrides Function GetSyntaxReference(node As VisualBasicSyntaxNode) As SyntaxReference
Binding\SourceFileBinder.vb (1)
35Public Overrides Function GetSyntaxReference(node As VisualBasicSyntaxNode) As SyntaxReference
Binding\SpeculativeBinder.vb (1)
36Public Overrides Function GetSyntaxReference(node As VisualBasicSyntaxNode) As SyntaxReference
18 references to GetSyntaxReference
Microsoft.CodeAnalysis.VisualBasic (18)
Binding\Binder_Imports.vb (3)
139data.AddAlias(binder.GetSyntaxReference(aliasImportSyntax), aliasText, aliasSymbol, aliasImportSyntax.SpanStart, DirectCast(diagBag.DependenciesBag, IReadOnlyCollection(Of AssemblySymbol))) 208data.AddMember(binder.GetSyntaxReference(importsName), importedSymbol, membersImportsSyntax.SpanStart, DirectCast(diagBag.DependenciesBag, IReadOnlyCollection(Of AssemblySymbol)), binder.BindingLocation = BindingLocation.ProjectImportsDeclaration) 244binder.GetSyntaxReference(syntax))
Binding\Binder.vb (1)
667Return m_containingBinder.GetSyntaxReference(node)
Symbols\Source\SourceComplexParameterSymbol.vb (1)
365syntaxRef = binder.GetSyntaxReference(syntax)
Symbols\Source\SourceDeclareMethodSymbol.vb (1)
34MyBase.New(container, flags, binder.GetSyntaxReference(syntax))
Symbols\Source\SourceDelegateMethodSymbol.vb (1)
34MyBase.New(delegateType, flags, binder.GetSyntaxReference(syntax), delegateType.Locations)
Symbols\Source\SourceEnumConstantSymbol.vb (2)
37bodyBinder.GetSyntaxReference(syntax), 117Me._equalsValueNodeRef = bodyBinder.GetSyntaxReference(initializer)
Symbols\Source\SourceEventSymbol.vb (2)
97_syntaxRef = binder.GetSyntaxReference(syntax) 373binder.GetSyntaxReference(syntax),
Symbols\Source\SourceMemberContainerTypeSymbol.vb (2)
2631Return New FieldOrPropertyInitializer(binder.GetSyntaxReference(memberSyntax), precedingInitializersLength) 2664Dim initializerOptRef = binder.GetSyntaxReference(equalsValueOrAsNewSyntax)
Symbols\Source\SourceMemberFieldSymbol.vb (1)
525Dim initializerOptRef = If(initializerSyntax Is Nothing, Nothing, binder.GetSyntaxReference(initializerSyntax))
Symbols\Source\SourceMemberMethodSymbol.vb (1)
77MyBase.New(containingType, flags, binder.GetSyntaxReference(syntax))
Symbols\Source\SourcePropertyAccessorSymbol.vb (1)
114binder.GetSyntaxReference(syntax),
Symbols\Source\SourcePropertySymbol.vb (2)
99Dim syntaxRef = bodyBinder.GetSyntaxReference(syntax) 100Dim blockRef = If(blockSyntaxOpt Is Nothing, Nothing, bodyBinder.GetSyntaxReference(blockSyntaxOpt))