in case the super method cannot be found, let's go through method_missing instead of aborting
--- MacRuby/branches/experimental/roxor.cpp 2009-03-29 03:32:31 UTC (rev 1244)
+++ MacRuby/branches/experimental/roxor.cpp 2009-03-29 03:36:51 UTC (rev 1245)
@@ -4999,9 +4999,7 @@
}
}
- printf("could not identify the superclass of %s from the ancestors chain %s\n",
- class_getName((Class)klass), RSTRING_PTR(rb_inspect(ary)));
- abort();
+ return NULL;
}
extern "C"