3 instantiations of SourceMemberMethodSymbol
Microsoft.CodeAnalysis.VisualBasic (3)
Symbols\Source\SourceMethodSymbol.vb (3)
122Dim methodSym As New SourceMemberMethodSymbol( 374Return New SourceMemberMethodSymbol( 404Dim methodSym As New SourceMemberMethodSymbol(container, name, flags, binder, syntax, arity:=0)
41 references to SourceMemberMethodSymbol
Microsoft.CodeAnalysis.VisualBasic (41)
Analysis\FlowAnalysis\DataFlowPass.vb (1)
1328Dim operatorBlock = DirectCast(DirectCast(local.ContainingSymbol, SourceMemberMethodSymbol).BlockSyntax, OperatorBlockSyntax)
Compilation\DocumentationComments\DocumentationCommentCompiler.Method.vb (1)
30If(TryCast(symbol, SourceMemberMethodSymbol),
Compilation\MethodCompiler.vb (2)
126Dim method = TryCast(symbol, SourceMemberMethodSymbol) 768Dim sourceMethod = TryCast(member, SourceMemberMethodSymbol)
Compilation\SyntaxTreeSemanticModel.vb (1)
771Dim methodSym = DirectCast(implementingMember, SourceMemberMethodSymbol)
Compilation\VisualBasicCompilation.vb (1)
1648Dim sourceMethod = TryCast(entryPoint, SourceMemberMethodSymbol)
Symbols\MethodSymbol.vb (1)
1062Return If(TryCast(Me, SourceMemberMethodSymbol)?.IsPartialDefinition, False)
Symbols\MethodSymbolExtensions.vb (2)
66Dim sourceMethod = TryCast(method, SourceMemberMethodSymbol) 76Dim sourceMethod = TryCast(method.OriginalDefinition, SourceMemberMethodSymbol)
Symbols\Source\SourceComplexParameterSymbol.vb (3)
41Dim sourceMethod = TryCast(Me.ContainingSymbol, SourceMemberMethodSymbol) 65Dim sourceMethod = TryCast(Me.ContainingSymbol, SourceMemberMethodSymbol) 73Dim otherPart As SourceMemberMethodSymbol = sourceMethod.SourcePartialImplementation
Symbols\Source\SourceMemberContainerTypeSymbol.vb (17)
1745Private Function FindPartialMethodDeclarations(diagnostics As BindingDiagnosticBag, members As Dictionary(Of String, ImmutableArray(Of Symbol))) As HashSet(Of SourceMemberMethodSymbol) 1746Dim partialMethods As HashSet(Of SourceMemberMethodSymbol) = Nothing 1749Dim method = TryCast(member, SourceMemberMethodSymbol) 1757partialMethods = New HashSet(Of SourceMemberMethodSymbol)(ReferenceEqualityComparer.Instance) 1769Dim partialMethods As HashSet(Of SourceMemberMethodSymbol) = FindPartialMethodDeclarations(diagnostics, members) 1783Dim originalPartialMethod As SourceMemberMethodSymbol = partialMethods.First() 1787Dim bestPartialMethod As SourceMemberMethodSymbol = originalPartialMethod 1792Dim bestImplMethod As SourceMemberMethodSymbol = Nothing 1798Dim candidate As SourceMemberMethodSymbol = TryCast(member, SourceMemberMethodSymbol) 1813Dim reportOnMethod As SourceMemberMethodSymbol = If(candidateIsBigger, candidate, bestPartialMethod) 1838Dim reportOnMethod As SourceMemberMethodSymbol = If(candidateIsBigger, candidate, bestImplMethod) 1882SourceMemberMethodSymbol.InitializePartialMethodParts(bestPartialMethod, bestImplMethod) 1889SourceMemberMethodSymbol.InitializePartialMethodParts(bestPartialMethod, Nothing) 2870eventSym = SourceMemberMethodSymbol.FindEvent(Me.BaseTypeNoUseSiteDiagnostics, baseBinder, eventName, isThroughMyBase:=True, useSiteInfo:=useSiteInfo) 3537Dim sourceMethod = TryCast(member, SourceMemberMethodSymbol) 3556sourceMethod = TryCast(nextMember, SourceMemberMethodSymbol)
Symbols\Source\SourceMemberMethodSymbol.vb (9)
47Private _otherPartOfPartial As SourceMemberMethodSymbol 219Dim methodImpl As SourceMemberMethodSymbol = If(Me.IsPartial, SourcePartialImplementation, Me) 455Public ReadOnly Property SourcePartialDefinition As SourceMemberMethodSymbol 461Public ReadOnly Property SourcePartialImplementation As SourceMemberMethodSymbol 479Friend Property OtherPartOfPartial As SourceMemberMethodSymbol 486Private Set(value As SourceMemberMethodSymbol) 487Dim oldValue As SourceMemberMethodSymbol = Me._otherPartOfPartial 531Friend Shared Sub InitializePartialMethodParts(definition As SourceMemberMethodSymbol, implementation As SourceMemberMethodSymbol)
Symbols\Source\SourceSimpleParameterSymbol.vb (1)
41Dim method = TryCast(Me.ContainingSymbol, SourceMemberMethodSymbol)
Symbols\Source\SourceTypeParameterSymbol.vb (2)
308Private ReadOnly _container As SourceMemberMethodSymbol 311Public Sub New(container As SourceMemberMethodSymbol,