Example #1
0
 public <T> T accept(ASTVisitor<T> v) {
   return v.forVariable(this);
 }
Example #2
0
 public <ResType> ResType accept(ASTVisitor<ResType> v) {
   return v.forPrimFun(this);
 }
Example #3
0
 public <T> T accept(ASTVisitor<T> v) {
   return v.forNullConstant(this);
 }
Example #4
0
 public <ResType> ResType accept(ASTVisitor<ResType> av) {
   return av.forBoolConstant(this);
 }
Example #5
0
 public <T> T accept(ASTVisitor<T> v) {
   return v.forBlock(this);
 }
Example #6
0
 public <T> T accept(ASTVisitor<T> v) {
   return v.forLetcc(this);
 }
Example #7
0
 public <ResType> ResType accept(ASTVisitor<ResType> v) {
   return v.forIntConstant(this);
 }
Example #8
0
 public <T> T accept(ASTVisitor<T> v) {
   return v.forApp(this);
 }