1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/ext/v8/string.cc
2012-05-09 14:46:05 -05:00

21 lines
No EOL
499 B
C++

#include "rr.h"
namespace rr {
VALUE StringClass;
namespace {
VALUE New(VALUE StringClass, VALUE string) {
v8::HandleScope h;
return String::ToRuby(v8::String::New(RSTRING_PTR(string), (int)RSTRING_LEN(string)));
}
}
VALUE String::ToRuby(v8::Handle<v8::String> string) {
return String::create(string, StringClass);
}
void String::Init() {
rb_gc_register_address(&StringClass);
StringClass = defineClass("String");
RR_DEFINE_SINGLETON_METHOD(StringClass, "New", &New, 1);
}
}