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

36 lines
629 B
C
Raw Normal View History

#ifndef THE_RUBY_RACER
#define THE_RUBY_RACER
#include <include/v8.h>
#include <include/libplatform/libplatform.h>
#include <ruby.h>
#include <vector>
#ifdef HAVE_RUBY_ENCODING_H
#include "ruby/encoding.h"
#endif
#include "class_builder.h"
#include "equiv.h"
#include "bool.h"
#include "pointer.h"
#include "ref.h"
#include "v8.h"
#include "isolate.h"
2015-03-21 20:27:06 +00:00
#include "locker.h"
#include "handles.h"
#include "context.h"
#include "uint32.h"
#include "value.h"
#include "backref.h"
#include "object.h"
#include "primitive.h"
// This one is named v8_string to avoid name collisions with C's string.h
#include "rr_string.h"
#endif