org.jruby.compiler.ir.operands.TemporaryClosureVariable Maven / Gradle / Ivy
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