
org.jruby.ir.instructions.RaiseRequiredKeywordArgumentError Maven / Gradle / Ivy
package org.jruby.ir.instructions;
import org.jruby.RubySymbol;
import org.jruby.ir.IRVisitor;
import org.jruby.ir.Operation;
import org.jruby.ir.persistence.IRReaderDecoder;
import org.jruby.ir.persistence.IRWriterEncoder;
import org.jruby.ir.runtime.IRRuntimeHelpers;
import org.jruby.ir.transformations.inlining.CloneInfo;
import org.jruby.parser.StaticScope;
import org.jruby.runtime.DynamicScope;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
// FIXME: Consider making argument error a single more generic instruction and combining with RaiseArgumentError
public class RaiseRequiredKeywordArgumentError extends NoOperandInstr implements FixedArityInstr {
private RubySymbol name;
public RaiseRequiredKeywordArgumentError(RubySymbol name) {
super(Operation.RAISE_REQUIRED_KEYWORD_ARGUMENT_ERROR);
this.name = name;
}
public String getId() {
return name.idString();
}
public RubySymbol getName() {
return name;
}
@Override
public Instr clone(CloneInfo ii) {
return new RaiseRequiredKeywordArgumentError(name);
}
@Override
public void encode(IRWriterEncoder e) {
super.encode(e);
e.encode(getName());
}
public static RaiseRequiredKeywordArgumentError decode(IRReaderDecoder d) {
return new RaiseRequiredKeywordArgumentError(d.decodeSymbol());
}
@Override
public Object interpret(ThreadContext context, StaticScope currScope, DynamicScope currDynScope, IRubyObject self, Object[] temp) {
throw IRRuntimeHelpers.newRequiredKeywordArgumentError(context, name.idString());
}
@Override
public void visit(IRVisitor visitor) {
visitor.RaiseRequiredKeywordArgumentErrorInstr(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy