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

org.jruby.compiler.ir.compiler_pass.CFG_Builder 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;
import org.jruby.compiler.ir.IRExecutionScope;
import org.jruby.compiler.ir.compiler_pass.CompilerPass;
import org.jruby.compiler.ir.representations.CFG;

public class CFG_Builder implements CompilerPass
{
    public CFG_Builder() { }

    public boolean isPreOrder()  { return true; }

    public void run(IRScope s) { if (s instanceof IRExecutionScope) ((IRExecutionScope)s).buildCFG(); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy