Revision
1245
Author
lsansonetti@apple.com
Date
2009-03-28 20:36:51 -0700 (Sat, 28 Mar 2009)

Log Message

in case the super method cannot be found, let's go through method_missing instead of aborting

Modified Paths

Diff

Modified: MacRuby/branches/experimental/roxor.cpp (1244 => 1245)


--- 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"