5 references to LambdaExpression_04
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (5)
Parsing\LambdaAttributeParsingTests.cs (5)
901
yield return getData("[A] (object x) => { }", tests => tests.
LambdaExpression_04
());
902
yield return getData("[A] async (object x) => { }", tests => tests.
LambdaExpression_04
(SyntaxKind.AsyncKeyword));
903
yield return getData("[A] static (object x) => { }", tests => tests.
LambdaExpression_04
(SyntaxKind.StaticKeyword));
904
yield return getData("[A] async static (object x) => { }", tests => tests.
LambdaExpression_04
(SyntaxKind.AsyncKeyword, SyntaxKind.StaticKeyword));
905
yield return getData("[A] static async (object x) => { }", tests => tests.
LambdaExpression_04
(SyntaxKind.StaticKeyword, SyntaxKind.AsyncKeyword));