1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/ext/v8/v8_obj.cpp

29 lines
731 B
C++

#include "v8_obj.h"
#include "v8_ref.h"
#include "converters.h"
using namespace v8;
VALUE V8_C_Object;
VALUE v8_Object_New(VALUE clazz) {
HandleScope handles;
return V8_Ref_Create(clazz, Object::New());
}
VALUE v8_Object_Get(VALUE self, VALUE key) {
HandleScope handles;
Local<Object> obj = V8_Ref_Get<Object>(self);
VALUE keystr = rb_funcall(key,rb_intern("to_s"), 0);
Local<Value> value = obj->Get(RB2V8(keystr));
return V82RB(value);
}
VALUE v8_Object_Set(VALUE self, VALUE key, VALUE value) {
HandleScope handles;
convert_rb_to_v8_t rb2v8;
Local<Object> obj = V8_Ref_Get<Object>(self);
VALUE keystr = rb_funcall(key, rb_intern("to_s"), 0);
obj->Set(rb2v8(keystr), rb2v8(value));
return Qnil;
}