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

org.jruby.compiler.ir.dataflow.DataFlowVar Maven / Gradle / Ivy

There is a newer version: 9.4.9.0
Show newest version
/* Represents some data flow fact about some dataflow problem */

package org.jruby.compiler.ir.dataflow;

public class DataFlowVar
{
/* ******************** PUBLIC INTERFACE ******************* */
    public final int _id;   // Unique ID assigned to this variable

    public DataFlowVar(DataFlowProblem prob) { _id = prob.addDataFlowVar(this); }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy