5 references to LambdaExpression_01
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (5)
Parsing\LambdaAttributeParsingTests.cs (5)
883yield return getData("[A] x => x", tests => tests.LambdaExpression_01()); 884yield return getData("[A] async x => x", tests => tests.LambdaExpression_01(SyntaxKind.AsyncKeyword)); 885yield return getData("[A] static x => x", tests => tests.LambdaExpression_01(SyntaxKind.StaticKeyword)); 886yield return getData("[A] async static x => x", tests => tests.LambdaExpression_01(SyntaxKind.AsyncKeyword, SyntaxKind.StaticKeyword)); 887yield return getData("[A] static async x => x", tests => tests.LambdaExpression_01(SyntaxKind.StaticKeyword, SyntaxKind.AsyncKeyword));