org.jruby.runtime.callsite.AsetCallSite Maven / Gradle / Ivy
package org.jruby.runtime.callsite;
import org.jruby.Ruby;
import org.jruby.RubyArray;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
public class AsetCallSite extends NormalCachingCallSite {
public AsetCallSite() {
super("[]=");
}
@Override
public IRubyObject call(ThreadContext context, IRubyObject caller, IRubyObject self, IRubyObject arg0, IRubyObject arg1) {
Ruby runtime = context.getRuntime();
if (self.getMetaClass() == runtime.getArray()) {
RubyArray array = (RubyArray)self;
return array.aset(arg0, arg1);
}
return super.call(context, caller, self, arg0, arg1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy