Package org.jruby.internal.runtime.methods

Examples of org.jruby.internal.runtime.methods.InvocationMethodFactory$DescriptorInfo


     */
    public static MethodFactory createFactory(ClassLoader classLoader) {
        if (reflection) return new ReflectionMethodFactory();
        if (dumping) return new DumpingInvocationMethodFactory(dumpingPath, classLoader);

        return new InvocationMethodFactory(classLoader);
    }
View Full Code Here


        // if we're dumping invokers to disk, use dumping
        if (dumping) return new DumpingInvocationMethodFactory(dumpingPath, classLoader);

        // otherwise, generate invokers at runtime
        return new InvocationMethodFactory(classLoader);
    }
View Full Code Here

    public static MethodFactory createFactory(ClassLoader classLoader) {
        // if reflection is forced or we've determined that we can't load bytecode, use reflection
        if (reflection || !CAN_LOAD_BYTECODE) return new ReflectionMethodFactory();

        // otherwise, generate invokers at runtime
        return new InvocationMethodFactory(classLoader);
    }
View Full Code Here

        // otherwise, generate invokers at runtime
        if (Options.COMPILE_INVOKEDYNAMIC.load() && Options.INVOKEDYNAMIC_HANDLES.load()) {
            return new InvokeDynamicMethodFactory(classLoader);
        } else {
            return new InvocationMethodFactory(classLoader);
        }
    }
View Full Code Here

TOP

Related Classes of org.jruby.internal.runtime.methods.InvocationMethodFactory$DescriptorInfo

Copyright © 2018 www.massapicom. 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.