Sha256: f9d9887b0f53b1c0c861ae7ddf408b01a3e6710ca203b70a1e19bba14215f04f
Contents?: true
Size: 547 Bytes
Versions: 119
Compression:
Stored size: 547 Bytes
Contents
package com.xruby.GeneratedMethods; import com.xruby.runtime.lang.*; import com.xruby.runtime.lang.ObjectSpace; public class ObjectSpace_Methods{ public static void initMethods( RubyModule klass){ klass.getSingletonClass().defineMethod( "each_object", new RubyNoOrOneArgMethod(){ protected RubyValue run(RubyValue receiver, RubyBlock block ){ return ObjectSpace.rubyEachObject(receiver, block);} protected RubyValue run(RubyValue receiver, RubyValue arg, RubyBlock block ){ return ObjectSpace.rubyEachObject(receiver, arg, block);} }); }}
Version data entries
119 entries across 119 versions & 1 rubygems