1 override of IsLambdaMethod
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Source\LambdaSymbol.vb (1)
266
Friend Overrides ReadOnly Property
IsLambdaMethod
As Boolean
10 references to IsLambdaMethod
Microsoft.CodeAnalysis.VisualBasic (7)
Binding\Binder.vb (1)
366
Return ContainingMember.
IsLambdaMethod
Binding\Binder_Expressions.vb (2)
3534
Debug.Assert(currentContainer.
IsLambdaMethod
OrElse stopAtContainer Is Nothing)
3535
If currentContainer.
IsLambdaMethod
Then
Binding\Binder_Invocation.vb (1)
3137
If container.
IsLambdaMethod
Then
Binding\Binder_Lambda.vb (2)
715
If containingMember.
IsLambdaMethod
Then
725
Loop While containingMember IsNot Nothing AndAlso containingMember.
IsLambdaMethod
Lowering\Diagnostics\DiagnosticsPass.vb (1)
138
Debug.Assert(_containingSymbol.
IsLambdaMethod
) ' What else can it be?
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (3)
Semantics\GetExtendedSemanticInfoTests.vb (2)
7698
Assert.True(containingMethod1.
IsLambdaMethod
, "variable should be contained by a lambda")
7714
Assert.True(containingMethod2.
IsLambdaMethod
, "variable should be contained by a lambda")
Semantics\SyncLockTests.vb (1)
247
Assert.Equal(True, semanticSummary.Symbol.
IsLambdaMethod
)