1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/ext/v8/script.cc
Charles Lowell 356b47a86f massively simplify reference creation.
make the template class define the RubyClass for
a given reference class. That way, it can define
the wrapping logic.
2012-05-15 11:46:14 -05:00

19 lines
No EOL
386 B
C++

#include "rr.h"
namespace rr {
void Script::Init() {
ClassBuilder("Script").
defineSingletonMethod("New", &New).
defineMethod("Run", &Run);
}
VALUE Script::New(VALUE klass, VALUE source, VALUE filename) {
return Script::create(v8::Script::New(String(source), Value(filename)));
}
VALUE Script::Run(VALUE self) {
return Convert(Script(self)->Run());
}
} //namespace rr