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