Files
2021-03-05 16:28:12 +01:00

26 lines
873 B
C#

using Microsoft.CodeAnalysis.CSharp.Syntax; // lgtm[cs/similar-file]
using Semmle.Extraction.Kinds;
using System.IO;
namespace Semmle.Extraction.CSharp.Entities.Statements
{
internal class Throw : Statement<ThrowStatementSyntax>
{
private Throw(Context cx, ThrowStatementSyntax node, IStatementParentEntity parent, int child)
: base(cx, node, StmtKind.THROW, parent, child) { }
public static Throw Create(Context cx, ThrowStatementSyntax node, IStatementParentEntity parent, int child)
{
var ret = new Throw(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);
}
}
}