Sha256: 99414c0d1a642217b01701b9e7eeb39503e874c26f82e689de6a72788e87d280
Contents?: true
Size: 794 Bytes
Versions: 119
Compression:
Stored size: 794 Bytes
Contents
package com.xruby.runtime.lang; //import com.xruby.runtime.lang.*; //import com.xruby.runtime.builtin.*; //import com.xruby.runtime.lang.RubyMarshalModule; public class RubyMarshalModule_Methods{ public static void initMethods( RubyModule klass){ klass.defineModuleMethod( "dump", new RubyOneArgMethod(){ protected RubyValue run(RubyValue receiver, RubyValue arg, RubyBlock block ){ return RubyMarshalModule.dump(arg);} }); klass.defineModuleMethod( "load", new RubyOneArgMethod(){ protected RubyValue run(RubyValue receiver, RubyValue arg, RubyBlock block ){ return RubyMarshalModule.load(arg);} }); klass.defineModuleMethod( "load", new RubyOneArgMethod(){ protected RubyValue run(RubyValue receiver, RubyValue arg, RubyBlock block ){ return RubyMarshalModule.load(arg);} }); }}
Version data entries
119 entries across 119 versions & 1 rubygems