ABT.CompoundStmt.CompoundStmt C# (CSharp) Метод

CompoundStmt() публичный Метод

public CompoundStmt ( Decln>.List declns, Stmt>.List stmts ) : System
declns Decln>.List
stmts Stmt>.List
Результат System
        public CompoundStmt(List<Tuple<Env, Decln>> declns, List<Tuple<Env, Stmt>> stmts) {
            this.Declns = declns;
            this.Stmts = stmts;
        }