mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
get rid of obsolete storage
This commit is contained in:
parent
c9f299957d
commit
01dcb216a6
2 changed files with 1 additions and 7 deletions
|
@ -18,19 +18,14 @@ extern "C" {
|
|||
}
|
||||
|
||||
VALUE rb_mModule;
|
||||
VALUE rb_cV8;
|
||||
|
||||
extern "C" {
|
||||
void Init_v8() {
|
||||
|
||||
rb_mModule = rb_define_module("V8");
|
||||
rb_define_singleton_method(rb_mModule, "what_is_this?", (VALUE(*)(...)) v8_what_is_this, 1);
|
||||
|
||||
V8_To = rb_define_module_under(rb_mModule, "To");
|
||||
|
||||
//native module setup
|
||||
VALUE rb_mNative = rb_define_module_under(rb_mModule, "C");
|
||||
|
||||
|
||||
rr_init_cxt();
|
||||
rr_init_str();
|
||||
rr_init_script();
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
#include "v8.h"
|
||||
#include "v8_ref.h"
|
||||
|
||||
extern VALUE rb_cV8;
|
||||
extern VALUE V8_C_Object;
|
||||
extern VALUE V8_C_Context;
|
||||
|
||||
|
|
Loading…
Reference in a new issue