AST.CompoundStmt.Create C# (CSharp) Method

Create() public static method

public static Create ( ImmutableList declns, ImmutableList stmts ) : Stmt
declns ImmutableList
stmts ImmutableList
return Stmt
        public static Stmt Create(ImmutableList<Decln> declns, ImmutableList<Stmt> stmts) =>
            new CompoundStmt(declns.ToList(), stmts.ToList());