5 references to ReturnStatement
Microsoft.CodeAnalysis.CSharp (4)
Syntax.xml.Main.Generated.cs (2)
4246
=> SyntaxFactory.
ReturnStatement
(attributeLists, SyntaxFactory.Token(SyntaxKind.ReturnKeyword), expression, SyntaxFactory.Token(SyntaxKind.SemicolonToken));
4251
=> SyntaxFactory.
ReturnStatement
(default, SyntaxFactory.Token(SyntaxKind.ReturnKeyword), expression, SyntaxFactory.Token(SyntaxKind.SemicolonToken));
Syntax.xml.Syntax.Generated.cs (1)
7301
var newNode = SyntaxFactory.
ReturnStatement
(attributeLists, returnKeyword, expression, semicolonToken);
Syntax\ReturnStatementSyntax.cs (1)
21
=>
ReturnStatement
(attributeLists: default, returnKeyword, expression, semicolonToken);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.cs (1)
10776
=> SyntaxFactory.
ReturnStatement
(new SyntaxList<AttributeListSyntax>(), SyntaxFactory.Token(SyntaxKind.ReturnKeyword), default(ExpressionSyntax), SyntaxFactory.Token(SyntaxKind.SemicolonToken));