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;
        }