[macruby-changes] [1009] MacRuby/branches/experimental/vm_method.c
source_changes at macosforge.org
source_changes at macosforge.org
Thu Mar 19 23:45:05 PDT 2009
Revision: 1009
http://trac.macosforge.org/projects/ruby/changeset/1009
Author: lsansonetti at apple.com
Date: 2009-03-19 23:45:02 -0700 (Thu, 19 Mar 2009)
Log Message:
-----------
disable rb_method_node() for now because it's wrongly implemented
Modified Paths:
--------------
MacRuby/branches/experimental/vm_method.c
Modified: MacRuby/branches/experimental/vm_method.c
===================================================================
--- MacRuby/branches/experimental/vm_method.c 2009-03-20 06:42:52 UTC (rev 1008)
+++ MacRuby/branches/experimental/vm_method.c 2009-03-20 06:45:02 UTC (rev 1009)
@@ -82,6 +82,8 @@
NODE *
rb_method_node(VALUE klass, ID id)
{
+ return NULL;
+#if 0 // TODO
NODE *node = rb_objc_method_node(klass, id, NULL, NULL);
if (node == NULL && id != ID_ALLOCATOR) {
const char *id_str = rb_id2name(id);
@@ -106,6 +108,7 @@
}
}
return node;
+#endif
}
static void
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macruby-changes/attachments/20090319/ec6d4c35/attachment-0001.html>
More information about the macruby-changes
mailing list