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

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

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