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

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

There is a newer version: 9.4.9.0
Show newest version
package org.jruby.ir.dataflow;

/**
 * Represents some data flow fact about some dataflow problem
 */
public class DataFlowVar {
    // Unique ID assigned to this variable
    public final int id;

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

    public int getId() {
        return id;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy