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