mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
37 lines
1,020 B
C++
37 lines
1,020 B
C++
#include <ruby.h>
|
|
#include <v8.h>
|
|
#include "v8_ref.h"
|
|
#include "v8_func.h"
|
|
#include "v8_template.h"
|
|
#include "converters.h"
|
|
#include "callbacks.h"
|
|
|
|
using namespace v8;
|
|
|
|
VALUE v8_Template_Set(VALUE self, VALUE name, VALUE value) {
|
|
HandleScope handles;
|
|
Local<Template> tmpl = V8_Ref_Get<Template>(self);
|
|
Local<Data> data = V8_Ref_Get<Data>(value);
|
|
tmpl->Set(RSTRING(name)->ptr, data);
|
|
return Qnil;
|
|
}
|
|
|
|
VALUE v8_ObjectTemplate_New(VALUE clazz) {
|
|
HandleScope handles;
|
|
return V8_Ref_Create(clazz, ObjectTemplate::New());
|
|
}
|
|
|
|
VALUE v8_FunctionTemplate_New(int argc, VALUE *argv, VALUE self) {
|
|
VALUE code;
|
|
rb_scan_args(argc, argv, "00&", &code);
|
|
HandleScope handles;
|
|
Local<FunctionTemplate> t = FunctionTemplate::New(RacerRubyInvocationCallback, External::Wrap((void *)code));
|
|
return V8_Ref_Create(self,t,code);
|
|
}
|
|
|
|
VALUE v8_FunctionTemplate_GetFunction(VALUE self) {
|
|
HandleScope handles;
|
|
Local<FunctionTemplate> t = V8_Ref_Get<FunctionTemplate>(self);
|
|
return V8_Wrap_Function(t->GetFunction());
|
|
}
|
|
|