}
@Specialization(guards = {"isNull", "isOtherObject"})
public RubyArray addNullObject(RubyArray a, RubyArray b) {
final int size = b.getSize();
return new RubyArray(getContext().getCoreLibrary().getArrayClass(), Arrays.copyOf((Object[]) b.getStore(), size), size);
}