Package org.jruby.runtime.builtin

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


            case STRING:
            case NIL:
                exactTypeError(runtime, v);
            default:
                tmp = v.callMethod(runtime.getCurrentContext(), "to_r");
                if(!tmp.eql(UNDEF)) {
                    if(v.respondsTo("to_str")) {
                        exactTypeError(runtime, v);
                    }
                    v = tmp;
                    break;
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.