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