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

org.jruby.compiler.ir.operands.TemporaryClosureVariable Maven / Gradle / Ivy

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

/**
 */
public class TemporaryClosureVariable extends TemporaryVariable {
    final int closureId;

    public TemporaryClosureVariable(int closureId, int offset) {
        super(offset);

        this.closureId = closureId;
    }

    @Override
    public String getPrefix() {
        return "%cl_" + closureId + "_";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy