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