5 references to LambdaExpression_01
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (5)
Parsing\LambdaAttributeParsingTests.cs (5)
876yield return getData("[A] x => x", tests => tests.LambdaExpression_01()); 877yield return getData("[A] async x => x", tests => tests.LambdaExpression_01(SyntaxKind.AsyncKeyword)); 878yield return getData("[A] static x => x", tests => tests.LambdaExpression_01(SyntaxKind.StaticKeyword)); 879yield return getData("[A] async static x => x", tests => tests.LambdaExpression_01(SyntaxKind.AsyncKeyword, SyntaxKind.StaticKeyword)); 880yield return getData("[A] static async x => x", tests => tests.LambdaExpression_01(SyntaxKind.StaticKeyword, SyntaxKind.AsyncKeyword));