mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
7 lines
No EOL
219 B
C++
7 lines
No EOL
219 B
C++
#include "rr.h"
|
|
|
|
VALUE rr_define_class(const char *name, VALUE superclass) {
|
|
VALUE V8 = rb_define_module("V8");
|
|
VALUE V8_C = rb_define_module_under(V8, "C");
|
|
return rb_define_class_under(V8_C, name, superclass);
|
|
} |