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-23 09:01:50 -05:00
|
|
|
v8::Locker lock();
|
2012-05-03 00:24:15 -07:00
|
|
|
GC::Init();
|
2012-05-03 10:56:41 -07:00
|
|
|
V8::Init();
|
2012-05-08 15:11:50 -05:00
|
|
|
Handles::Init();
|
2012-05-09 13:12:44 -05:00
|
|
|
Accessor::Init();
|
2012-05-01 11:53:01 -07:00
|
|
|
Context::Init();
|
2012-05-21 12:22:07 -05:00
|
|
|
Invocation::Init();
|
|
|
|
Signature::Init();
|
2012-05-04 00:23:41 -05:00
|
|
|
Value::Init();
|
2012-06-08 03:56:04 -05:00
|
|
|
Primitive::Init();
|
2012-05-02 16:15:11 -07:00
|
|
|
String::Init();
|
2012-05-04 00:23:41 -05:00
|
|
|
Object::Init();
|
2012-05-17 10:30:37 -05:00
|
|
|
Array::Init();
|
2012-05-18 11:56:15 -05:00
|
|
|
Function::Init();
|
2012-06-07 10:02:10 -05:00
|
|
|
Date::Init();
|
2012-06-08 03:56:04 -05:00
|
|
|
Constants::Init();
|
2012-05-08 15:11:50 -05:00
|
|
|
External::Init();
|
2012-05-02 16:15:11 -07:00
|
|
|
Script::Init();
|
2012-05-17 10:30:37 -05:00
|
|
|
Template::Init();
|
2012-05-25 15:53:13 -05:00
|
|
|
Stack::Init();
|
|
|
|
Message::Init();
|
|
|
|
TryCatch::Init();
|
2012-05-25 17:20:48 -05:00
|
|
|
Locker::Init();
|
2012-06-08 06:06:49 -05:00
|
|
|
ResourceConstraints::Init();
|
|
|
|
HeapStatistics::Init();
|
2012-06-08 14:13:33 -05:00
|
|
|
Backref::Init();
|
2012-01-31 15:52:08 -06:00
|
|
|
}
|
|
|
|
}
|