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

38 lines
1,020 B
C++
Raw Normal View History

#include <ruby.h>
#include <v8.h>
2009-12-09 19:40:31 -05:00
#include "v8_ref.h"
2009-12-18 02:48:06 -05:00
#include "v8_func.h"
2009-12-09 19:40:31 -05:00
#include "v8_template.h"
#include "converters.h"
#include "callbacks.h"
2009-12-09 19:40:31 -05:00
using namespace v8;
VALUE v8_Template_Set(VALUE self, VALUE name, VALUE value) {
2009-12-09 19:40:31 -05:00
HandleScope handles;
Local<Template> tmpl = V8_Ref_Get<Template>(self);
Local<Data> data = V8_Ref_Get<Data>(value);
2009-12-09 19:40:31 -05:00
tmpl->Set(RSTRING(name)->ptr, data);
return Qnil;
}
VALUE v8_ObjectTemplate_New(VALUE clazz) {
2009-12-09 19:40:31 -05:00
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);
2009-12-09 19:40:31 -05:00
}
2009-12-18 02:48:06 -05:00
VALUE v8_FunctionTemplate_GetFunction(VALUE self) {
HandleScope handles;
Local<FunctionTemplate> t = V8_Ref_Get<FunctionTemplate>(self);
return V8_Wrap_Function(t->GetFunction());
}