2012-01-31 15:52:08 -06:00
|
|
|
#ifndef THE_RUBY_RACER
|
|
|
|
#define THE_RUBY_RACER
|
|
|
|
|
2015-03-18 21:50:59 +00:00
|
|
|
#include <include/v8.h>
|
|
|
|
#include <include/libplatform/libplatform.h>
|
|
|
|
|
2012-01-31 15:52:08 -06:00
|
|
|
#include <ruby.h>
|
2012-05-17 10:30:37 -05:00
|
|
|
#include <vector>
|
2012-06-07 08:37:46 -05:00
|
|
|
#ifdef HAVE_RUBY_ENCODING_H
|
|
|
|
#include "ruby/encoding.h"
|
|
|
|
#endif
|
2012-01-31 15:52:08 -06:00
|
|
|
|
2015-04-04 18:23:23 +00:00
|
|
|
inline VALUE not_implemented(const char* message) {
|
|
|
|
rb_raise(rb_eStandardError, "not yet implemented %s", message);
|
|
|
|
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2015-03-18 21:50:59 +00:00
|
|
|
#include "class_builder.h"
|
2015-03-21 09:51:17 +00:00
|
|
|
|
|
|
|
#include "equiv.h"
|
|
|
|
#include "bool.h"
|
2015-03-18 21:50:59 +00:00
|
|
|
#include "pointer.h"
|
2015-04-04 14:03:06 +00:00
|
|
|
#include "isolate.h"
|
|
|
|
|
2015-03-20 20:47:57 +00:00
|
|
|
#include "ref.h"
|
2012-05-21 16:36:19 -05:00
|
|
|
|
2015-03-18 21:50:59 +00:00
|
|
|
#include "v8.h"
|
2015-04-04 14:03:06 +00:00
|
|
|
#include "locks.h"
|
2015-03-18 21:50:59 +00:00
|
|
|
#include "handles.h"
|
2015-03-20 20:47:57 +00:00
|
|
|
#include "context.h"
|
2012-01-31 15:52:08 -06:00
|
|
|
|
2015-03-20 20:47:57 +00:00
|
|
|
#include "uint32.h"
|
|
|
|
#include "value.h"
|
|
|
|
#include "backref.h"
|
|
|
|
|
|
|
|
#include "object.h"
|
2015-04-05 10:40:55 +00:00
|
|
|
#include "array.h"
|
2015-03-21 09:51:17 +00:00
|
|
|
#include "primitive.h"
|
|
|
|
// This one is named v8_string to avoid name collisions with C's string.h
|
|
|
|
#include "rr_string.h"
|
2015-03-18 21:50:59 +00:00
|
|
|
|
2015-04-04 18:23:23 +00:00
|
|
|
#include "function.h"
|
|
|
|
#include "script.h"
|
|
|
|
|
2015-03-20 20:47:57 +00:00
|
|
|
#endif
|