mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
23 lines
724 B
C#
23 lines
724 B
C#
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
using Semmle.Extraction.Kinds;
|
|
using System.IO;
|
|
|
|
namespace Semmle.Extraction.CSharp.Entities.Statements
|
|
{
|
|
class Continue : Statement<ContinueStatementSyntax>
|
|
{
|
|
Continue(Context cx, ContinueStatementSyntax stmt, IStatementParentEntity parent, int child)
|
|
: base(cx, stmt, StmtKind.CONTINUE, parent, child) { }
|
|
|
|
public static Continue Create(Context cx, ContinueStatementSyntax node, IStatementParentEntity parent, int child)
|
|
{
|
|
var ret = new Continue(cx, node, parent, child);
|
|
ret.TryPopulate();
|
|
return ret;
|
|
}
|
|
|
|
protected override void PopulateStatement(TextWriter trapFile) { }
|
|
}
|
|
}
|
|
|