Package org.jruby.internal.runtime.methods

Examples of org.jruby.internal.runtime.methods.CompiledIRMetaClassBody


     */
    @JIT
    public static DynamicMethod newCompiledMetaClass(ThreadContext context, MethodHandle handle, IRScope metaClassBody, IRubyObject obj) {
        RubyClass singletonClass = newMetaClassFromIR(context.runtime, metaClassBody, obj);

        return new CompiledIRMetaClassBody(handle, metaClassBody, singletonClass);
    }
View Full Code Here

TOP

Related Classes of org.jruby.internal.runtime.methods.CompiledIRMetaClassBody

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.