Examples of selfAndIncludedModules()


Examples of org.jruby.truffle.runtime.core.RubyClass.selfAndIncludedModules()

            }
        }

        // Look in Object and its included modules
        if (module.isOnlyAModule()) {
            for (RubyModule ancestor : objectClass.selfAndIncludedModules()) {
                constant = ancestor.getConstants().get(name);

                if (constant != null) {
                    return constant;
                }
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.