Package org.jruby.compiler.ir.instructions

Examples of org.jruby.compiler.ir.instructions.METHOD_VERSION_GUARD_Instr


    {
        String      fullName     = m.getFullyQualifiedName();
        CodeVersion knownVersion = versionMap.get(fullName);
        CodeVersion mVersion     = m.getVersion();
        if ((knownVersion == null) || (knownVersion._version != mVersion._version)) {
            instrs.add(new METHOD_VERSION_GUARD_Instr(m, m.getVersion(), deoptLabel));
            versionMap.put(fullName, mVersion);
        }
    }
View Full Code Here

TOP

Related Classes of org.jruby.compiler.ir.instructions.METHOD_VERSION_GUARD_Instr

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.