5 references to ReturnStatement
Microsoft.CodeAnalysis.CSharp (4)
Syntax.xml.Main.Generated.cs (2)
4225
=> SyntaxFactory.
ReturnStatement
(attributeLists, SyntaxFactory.Token(SyntaxKind.ReturnKeyword), expression, SyntaxFactory.Token(SyntaxKind.SemicolonToken));
4230
=> SyntaxFactory.
ReturnStatement
(default, SyntaxFactory.Token(SyntaxKind.ReturnKeyword), expression, SyntaxFactory.Token(SyntaxKind.SemicolonToken));
Syntax.xml.Syntax.Generated.cs (1)
7256
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)
10733
=> SyntaxFactory.
ReturnStatement
(new SyntaxList<AttributeListSyntax>(), SyntaxFactory.Token(SyntaxKind.ReturnKeyword), default(ExpressionSyntax), SyntaxFactory.Token(SyntaxKind.SemicolonToken));