org.jruby.compiler.ir.instructions.FilenameInstr Maven / Gradle / Ivy
package org.jruby.compiler.ir.instructions;
import org.jruby.compiler.ir.Operation;
import org.jruby.compiler.ir.representations.InlinerInfo;
import org.jruby.compiler.ir.operands.Label;
import org.jruby.interpreter.InterpreterContext;
import org.jruby.runtime.builtin.IRubyObject;
public class FilenameInstr extends NoOperandInstr {
public final String filename;
public FilenameInstr(String filename) {
super(Operation.FILE_NAME);
this.filename = filename;
}
@Override
public String toString() {
return super.toString() + "(" + filename + ")";
}
public Instr cloneForInlining(InlinerInfo ii) {
return this;
}
@Override
public Label interpret(InterpreterContext interp, IRubyObject self) {
interp.getContext().setFile(filename);
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy