2012-01-31 15:52:08 -06:00
|
|
|
#include "rr.h"
|
|
|
|
|
|
|
|
extern "C" {
|
2012-05-01 11:53:01 -07:00
|
|
|
void Init_init();
|
2012-01-31 15:52:08 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
using namespace rr;
|
|
|
|
|
|
|
|
extern "C" {
|
2012-05-01 11:53:01 -07:00
|
|
|
void Init_init() {
|
2012-05-03 10:56:41 -07:00
|
|
|
V8::Init();
|
2015-03-18 21:50:59 +00:00
|
|
|
Isolate::Init();
|
2015-03-18 22:08:34 +00:00
|
|
|
Handles::Init();
|
2015-03-18 21:50:59 +00:00
|
|
|
// v8::Locker lock();
|
|
|
|
// GC::Init();
|
|
|
|
// Accessor::Init();
|
|
|
|
// Context::Init();
|
|
|
|
// Invocation::Init();
|
|
|
|
// Signature::Init();
|
|
|
|
// Value::Init();
|
|
|
|
// Primitive::Init();
|
|
|
|
// String::Init();
|
|
|
|
// Object::Init();
|
|
|
|
// Array::Init();
|
|
|
|
// Function::Init();
|
|
|
|
// Date::Init();
|
|
|
|
// Constants::Init();
|
|
|
|
// External::Init();
|
|
|
|
// Script::Init();
|
|
|
|
// Template::Init();
|
|
|
|
// Stack::Init();
|
|
|
|
// Message::Init();
|
|
|
|
// TryCatch::Init();
|
|
|
|
// Exception::Init();
|
|
|
|
// Locker::Init();
|
|
|
|
// ResourceConstraints::Init();
|
|
|
|
// HeapStatistics::Init();
|
|
|
|
// Backref::Init();
|
2012-01-31 15:52:08 -06:00
|
|
|
}
|
2015-03-18 21:50:59 +00:00
|
|
|
}
|