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