Package org.jruby.runtime.builtin

Examples of org.jruby.runtime.builtin.IRubyObject.infectBy()


        return inspect(pos + "/" + str.getByteList().realSize + " " + inspect1() + " @ " + inspect2());
    }
   
    private IRubyObject inspect(String msg) {
        IRubyObject result = getRuntime().newString("#<" + getMetaClass() + " " + msg + ">");
        if (str != null) result.infectBy(str);
        return result;
    }
   
    private static final int INSPECT_LENGTH = 5;
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.