mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
#include "v8.h"
|
|
#include "v8_handle.h"
|
|
#include "v8_script.h"
|
|
|
|
using namespace v8;
|
|
|
|
namespace {
|
|
|
|
VALUE New(VALUE self, VALUE source, VALUE source_name) {
|
|
HandleScope scope;
|
|
Local<String> src(rr_rb2v8(source)->ToString());
|
|
Local<String> src_name(rr_rb2v8(source_name)->ToString());
|
|
return rr_v8_handle_new(self, Script::Compile(src, src_name));
|
|
}
|
|
|
|
VALUE Compile(VALUE self, VALUE source, VALUE source_name) {
|
|
HandleScope scope;
|
|
Local<String> src(rr_rb2v8(source)->ToString());
|
|
Local<String> src_name(rr_rb2v8(source_name)->ToString());
|
|
return rr_v8_handle_new(self, Script::Compile(src, src_name));
|
|
}
|
|
|
|
VALUE Run(VALUE self) {
|
|
HandleScope scope;
|
|
Persistent<Script> script(rr_v8_handle<Script>(self));
|
|
Local<Value> result(script->Run());
|
|
return result.IsEmpty() ? Qnil : rr_v82rb(result);
|
|
}
|
|
}
|
|
|
|
void rr_init_script() {
|
|
VALUE ScriptClass = rr_define_class("Script", rr_v8_handle_class());
|
|
rr_define_singleton_method(ScriptClass, "New", New, 2);
|
|
rr_define_singleton_method(ScriptClass, "Compile", Compile, 2);
|
|
rr_define_method(ScriptClass, "Run", Run, 0);
|
|
}
|