예제 #1
0
 /* throws Exception */
 public override IrExp accept(TransVI v)
 {
     return v.visit(this);
 }
예제 #2
0
 /* throws Exception */
 public IrFunc accept(TransVI v)
 {
     return v.visit(this);
 }
예제 #3
0
파일: AstExp.cs 프로젝트: robin5/DemiTasse
 public abstract IrExp accept(TransVI v);
예제 #4
0
파일: AstStmt.cs 프로젝트: robin5/DemiTasse
 public abstract IrStmt accept(TransVI v) /* throws Exception */;
예제 #5
0
 public IrStmtList accept(TransVI v)
 {
     return v.visit(this);
 }
예제 #6
0
 /* throws Exception */
 public IrProg accept(TransVI v)
 {
     return v.visit(this);
 }