ABT.CompoundStmt.CompoundStmt C# (CSharp) Method

CompoundStmt() public method

public CompoundStmt ( Decln>.List declns, Stmt>.List stmts ) : System
declns Decln>.List
stmts Stmt>.List
return System
        public CompoundStmt(List<Tuple<Env, Decln>> declns, List<Tuple<Env, Stmt>> stmts) {
            this.Declns = declns;
            this.Stmts = stmts;
        }