2012-01-31 16:52:08 -05:00
|
|
|
#include "rr.h"
|
|
|
|
|
|
|
|
extern "C" {
|
2012-05-01 14:53:01 -04:00
|
|
|
void Init_init();
|
2012-01-31 16:52:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
using namespace rr;
|
|
|
|
|
|
|
|
extern "C" {
|
2012-05-01 14:53:01 -04:00
|
|
|
void Init_init() {
|
2012-05-23 10:01:50 -04:00
|
|
|
v8::Locker lock();
|
2012-05-03 03:24:15 -04:00
|
|
|
GC::Init();
|
2012-05-03 13:56:41 -04:00
|
|
|
V8::Init();
|
2012-05-08 16:11:50 -04:00
|
|
|
Handles::Init();
|
2012-05-09 14:12:44 -04:00
|
|
|
Accessor::Init();
|
2012-05-01 14:53:01 -04:00
|
|
|
Context::Init();
|
2012-05-21 13:22:07 -04:00
|
|
|
Invocation::Init();
|
|
|
|
Signature::Init();
|
2012-05-04 01:23:41 -04:00
|
|
|
Value::Init();
|
2012-06-08 04:56:04 -04:00
|
|
|
Primitive::Init();
|
2012-05-02 19:15:11 -04:00
|
|
|
String::Init();
|
2012-05-04 01:23:41 -04:00
|
|
|
Object::Init();
|
2012-05-17 11:30:37 -04:00
|
|
|
Array::Init();
|
2012-05-18 12:56:15 -04:00
|
|
|
Function::Init();
|
2012-06-07 11:02:10 -04:00
|
|
|
Date::Init();
|
2012-06-08 04:56:04 -04:00
|
|
|
Constants::Init();
|
2012-05-08 16:11:50 -04:00
|
|
|
External::Init();
|
2012-05-02 19:15:11 -04:00
|
|
|
Script::Init();
|
2012-05-17 11:30:37 -04:00
|
|
|
Template::Init();
|
2012-05-25 16:53:13 -04:00
|
|
|
Stack::Init();
|
|
|
|
Message::Init();
|
|
|
|
TryCatch::Init();
|
2012-05-25 18:20:48 -04:00
|
|
|
Locker::Init();
|
2012-06-08 07:06:49 -04:00
|
|
|
ResourceConstraints::Init();
|
|
|
|
HeapStatistics::Init();
|
2012-01-31 16:52:08 -05:00
|
|
|
}
|
|
|
|
}
|