2 instantiations of MethodBodySemanticModel
Microsoft.CodeAnalysis.VisualBasic (2)
Binding\MethodBodySemanticModel.vb (1)
25Return New MethodBodySemanticModel(binder.Root, binder, containingSemanticModel)
Compilation\SpeculativeSemanticModelWithMemberModel.vb (1)
60_memberModel = New MethodBodySemanticModel(root, binder, containingPublicSemanticModel:=Me)
4 references to MethodBodySemanticModel
Microsoft.CodeAnalysis.VisualBasic (4)
Binding\Binder.vb (1)
47''' <see cref="ExecutableCodeBinder"/>, <see cref="MethodBodySemanticModel.IncrementalBinder"/>
Binding\MethodBodySemanticModel.vb (1)
23Friend Shared Function Create(containingSemanticModel As SyntaxTreeSemanticModel, binder As SubOrFunctionBodyBinder) As MethodBodySemanticModel
Compilation\MethodCompiler.vb (1)
1288Dim memberModel = CType(semanticModelWithCachedBoundNodes.GetMemberSemanticModel(syntax), MethodBodySemanticModel)
Compilation\SyntaxTreeSemanticModel.vb (1)
140Private ReadOnly _methodBodySemanticModelCreator As Func(Of Binder, MemberSemanticModel) = Function(key As Binder) MethodBodySemanticModel.Create(Me, DirectCast(key, SubOrFunctionBodyBinder))