mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
28 lines
875 B
C#
28 lines
875 B
C#
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
using Semmle.Extraction.Kinds;
|
|
using System.IO;
|
|
|
|
namespace Semmle.Extraction.CSharp.Entities.Statements
|
|
{
|
|
internal class Yield : Statement<YieldStatementSyntax>
|
|
{
|
|
private Yield(Context cx, YieldStatementSyntax node, IStatementParentEntity parent, int child)
|
|
: base(cx, node, StmtKind.YIELD, parent, child) { }
|
|
|
|
public static Yield Create(Context cx, YieldStatementSyntax node, IStatementParentEntity parent, int child)
|
|
{
|
|
var ret = new Yield(cx, node, parent, child);
|
|
ret.TryPopulate();
|
|
return ret;
|
|
}
|
|
|
|
protected override void PopulateStatement(TextWriter trapFile)
|
|
{
|
|
if (Stmt.Expression is not null)
|
|
{
|
|
Expression.Create(Context, Stmt.Expression, this, 0);
|
|
}
|
|
}
|
|
}
|
|
}
|