mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
25 lines
No EOL
373 B
C++
25 lines
No EOL
373 B
C++
#include "rr.h"
|
|
|
|
extern "C" {
|
|
void Init_init();
|
|
}
|
|
|
|
using namespace rr;
|
|
|
|
extern "C" {
|
|
void Init_init() {
|
|
GC::Init();
|
|
V8::Init();
|
|
Handles::Init();
|
|
Accessor::Init();
|
|
Context::Init();
|
|
Value::Init();
|
|
String::Init();
|
|
Object::Init();
|
|
Array::Init();
|
|
Function::Init();
|
|
External::Init();
|
|
Script::Init();
|
|
Template::Init();
|
|
}
|
|
} |