コード例 #1
0
 public TypeDeclaration(Type type, string id, FormalList flist, Statement stmt)
 {
     this.type  = type;
     this.id    = id;
     this.flist = flist;
     this.stmt  = stmt;
 }
コード例 #2
0
 public VoidDeclaration(string id, FormalList flist, Statement stmt)
 {
     this.id    = id;
     this.flist = flist;
     this.stmt  = stmt;
 }