Package org.jruby.runtime.profile.builtin

Examples of org.jruby.runtime.profile.builtin.ProfiledMethods


    private Ruby(RubyInstanceConfig config) {
        this.config             = config;
        this.threadService      = new ThreadService(this);

        if( config.isProfiling() ) {
            this.profiledMethods        = new ProfiledMethods(this);
            this.profilingServiceLookup = new ProfilingServiceLookup(this);
        } else {
            this.profiledMethods        = null;
            this.profilingServiceLookup = null;
        }
View Full Code Here

TOP

Related Classes of org.jruby.runtime.profile.builtin.ProfiledMethods

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.