13 references to SyntaxTree
Microsoft.CodeAnalysis.VisualBasic (11)
Symbols\Source\CustomEventAccessorSymbol.vb (1)
66
Dim binder As Binder = BinderBuilder.CreateBinderForType(sourceModule, Me.
SyntaxTree
, type)
Symbols\Source\SourceMemberMethodSymbol.vb (4)
312
Dim binder As Binder = BinderBuilder.CreateBinderForType(sourceModule, Me.
SyntaxTree
, m_containingType)
362
Debug.Assert(Me.
SyntaxTree
IsNot Nothing)
394
Dim binder As Binder = BinderBuilder.CreateBinderForType(sourceModule, Me.
SyntaxTree
, ContainingType)
578
Dim typeBinder As Binder = BinderBuilder.CreateBinderForType(sourceModule, Me.
SyntaxTree
, m_containingType)
Symbols\Source\SourceMethodSymbol.vb (3)
894
Dim binder As Binder = BinderBuilder.CreateBinderForType(Me.ContainingSourceModule, Me.
SyntaxTree
, m_containingType)
1178
Dim syntaxTree As SyntaxTree = Me.
SyntaxTree
2184
Dim binder As Binder = BinderBuilder.CreateBinderForMethodDeclaration(sourceModule, Me.
SyntaxTree
, Me)
Symbols\Source\SourcePropertyAccessorSymbol.vb (2)
239
Dim binder As Binder = BinderBuilder.CreateBinderForType(sourceModule, Me.
SyntaxTree
, Me.m_property.ContainingSourceType)
283
Dim binder As Binder = BinderBuilder.CreateBinderForType(sourceModule, Me.
SyntaxTree
, Me.m_property.ContainingSourceType)
Symbols\Source\SourcePropertySymbol.vb (1)
1131
Dim syntaxTree = accessor.
SyntaxTree
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (2)
Binding\MethodBodyBindingTests.vb (2)
81
Dim meth1Context As MethodBodyBinder = DirectCast(BinderBuilder.CreateBinderForMethodBody(DirectCast(meth1.ContainingModule, SourceModuleSymbol), meth1.
SyntaxTree
, meth1), MethodBodyBinder)
107
Dim meth2Context As MethodBodyBinder = DirectCast(BinderBuilder.CreateBinderForMethodBody(DirectCast(meth2.ContainingModule, SourceModuleSymbol), meth2.
SyntaxTree
, meth2), MethodBodyBinder)