mirror of
https://github.com/github/codeql.git
synced 2026-05-05 05:35:13 +02:00
C#: Add declaration visibility modifiers
This commit is contained in:
@@ -5,9 +5,9 @@ using System.Linq;
|
||||
|
||||
namespace Semmle.Extraction.CSharp.Entities.Statements
|
||||
{
|
||||
class Block : Statement<BlockSyntax>
|
||||
internal class Block : Statement<BlockSyntax>
|
||||
{
|
||||
Block(Context cx, BlockSyntax block, IStatementParentEntity parent, int child)
|
||||
private Block(Context cx, BlockSyntax block, IStatementParentEntity parent, int child)
|
||||
: base(cx, block, StmtKind.BLOCK, parent, child) { }
|
||||
|
||||
public static Block Create(Context cx, BlockSyntax node, IStatementParentEntity parent, int child)
|
||||
|
||||
Reference in New Issue
Block a user