Sha256: 543e6e49dc65671c8aa8de56ed85296aa310c79bb13730e934fecabb2b0a79e5

Contents?: true

Size: 1.17 KB

Versions: 77

Compression:

Stored size: 1.17 KB

Contents

#include "v8_handle.h"
#include "v8_array.h"
#include "v8_object.h"

using namespace v8;


namespace {
  
  VALUE ArrayClass;
  
  Persistent<Array>& unwrap(VALUE self) {
    return rr_v8_handle<Array>(self);
  }
  
  VALUE New(int argc, VALUE *argv, VALUE self) {
    if (!Context::InContext()) {
      rb_raise(rb_eScriptError, "must be in a context to call Array::New()");
      return Qnil;
    }
    VALUE length;
    rb_scan_args(argc, argv, "01", &length);
    if (NIL_P(length)) {
      length = INT2FIX(0);
    }
    HandleScope scope;
    return rr_v8_handle_new(self, Array::New(NUM2INT(length)));
  }
  
  VALUE Length(VALUE self) {
    return rr_v82rb(unwrap(self)->Length());
  }
  
  VALUE CloneElementAt(VALUE self, VALUE index) {
    return rr_v82rb(unwrap(self)->CloneElementAt(NUM2UINT(index)));
  }
}

void rr_init_v8_array() {
  ArrayClass = rr_define_class("Array", rr_v8_object_class());
  rr_define_singleton_method(ArrayClass, "New", New, -1);
  rr_define_method(ArrayClass, "Length", Length, 0);
  rr_define_method(ArrayClass, "CloneElementAt", CloneElementAt, 1);
}

VALUE rr_reflect_v8_array(Handle<Value> value) {
  return rr_reflect_v8_object_as(value, ArrayClass);
}

Version data entries

77 entries across 77 versions & 5 rubygems

Version Path
classiccms-0.5.13 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.5.12 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.5.11 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.5.10 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.5.9 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.5.8 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.5.7 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
therubyracer-0.10.2 ext/v8/v8_array.cpp
therubyracer-0.10.2beta1 ext/v8/v8_array.cpp
classiccms-0.5.6 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.5.5 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.5.2 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.5.1 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.5.0 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.4.2 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.4.1 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.4.0 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
classiccms-0.3.9 vendor/bundle/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
sunrise-cms-0.3.3 vendor/bundle/ruby/1.9.1/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp
sunrise-cms-0.3.2 vendor/bundle/ruby/1.9.1/gems/therubyracer-0.10.1/ext/v8/v8_array.cpp