All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jruby.ir.passes.CallSplitter Maven / Gradle / Ivy

There is a newer version: 0.8.14
Show newest version
package org.jruby.ir.passes;

import org.jruby.ir.IRScope;

public class CallSplitter extends CompilerPass {
    public String getLabel() {
        return "Call Splitting";
    }

    public Object execute(IRScope scope, Object... data) {
        scope.splitCalls();
        
        return null;
    }
    
    public void invalidate(IRScope scope) {
        // FIXME: ...
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy