コード例 #1
0
ファイル: lexer.java プロジェクト: wjy920421/JamInterpreter
 public <ResType> ResType accept(JamFunVisitor<ResType> v) {
   return v.forPrimFun(this);
 }
コード例 #2
0
ファイル: lexer.java プロジェクト: wjy920421/JamInterpreter
 public <ResType> ResType accept(JamFunVisitor<ResType> jfv) {
   return jfv.forJamClosure(this);
 }