mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
25 lines
839 B
C#
25 lines
839 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 Unchecked : Statement<CheckedStatementSyntax>
|
|
{
|
|
private Unchecked(Context cx, CheckedStatementSyntax stmt, IStatementParentEntity parent, int child)
|
|
: base(cx, stmt, StmtKind.UNCHECKED, parent, child) { }
|
|
|
|
public static Unchecked Create(Context cx, CheckedStatementSyntax node, IStatementParentEntity parent, int child)
|
|
{
|
|
var ret = new Unchecked(cx, node, parent, child);
|
|
ret.TryPopulate();
|
|
return ret;
|
|
}
|
|
|
|
protected override void PopulateStatement(TextWriter trapFile)
|
|
{
|
|
Statement.Create(cx, Stmt.Block, this, 0);
|
|
}
|
|
}
|
|
}
|