예제 #1
0
 public static TrashObject DefineStmt(this Interpreter interpreter, Stmt.Define stmt)
 {
     // this should also theoretically never be visited
     // but at this point it's just spaghetti, so I wouldn't be surprised if it was
     throw new NotImplementedException();
 }
예제 #2
0
 public TrashObject VisitDefineStmt(Stmt.Define stmt)
 {
     return(this.DefineStmt(stmt));
 }