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

org.jruby.compiler.ir.compiler_pass.CompilerPass Maven / Gradle / Ivy

There is a newer version: 9.4.7.0
Show newest version
package org.jruby.compiler.ir.compiler_pass;

import org.jruby.compiler.ir.IRScope;

public interface CompilerPass
{
    // Should we run this pass on the current scope before running it on nested scopes?
    public boolean isPreOrder();

    // Run the pass on the passed in scope!
    public void run(IRScope s);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy