5 references to LambdaExpression_04
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (5)
Parsing\LambdaAttributeParsingTests.cs (5)
894
yield return getData("[A] (object x) => { }", tests => tests.
LambdaExpression_04
());
895
yield return getData("[A] async (object x) => { }", tests => tests.
LambdaExpression_04
(SyntaxKind.AsyncKeyword));
896
yield return getData("[A] static (object x) => { }", tests => tests.
LambdaExpression_04
(SyntaxKind.StaticKeyword));
897
yield return getData("[A] async static (object x) => { }", tests => tests.
LambdaExpression_04
(SyntaxKind.AsyncKeyword, SyntaxKind.StaticKeyword));
898
yield return getData("[A] static async (object x) => { }", tests => tests.
LambdaExpression_04
(SyntaxKind.StaticKeyword, SyntaxKind.AsyncKeyword));