1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/ext/v8/init.cc

16 lines
190 B
C++
Raw Normal View History

#include "rr.h"
extern "C" {
2012-05-01 14:53:01 -04:00
void Init_init();
}
using namespace rr;
extern "C" {
2012-05-01 14:53:01 -04:00
void Init_init() {
GC::Init();
2012-05-01 14:53:01 -04:00
Context::Init();
2012-05-02 19:15:11 -04:00
String::Init();
Script::Init();
}
}