2010-05-08 12:34:52 -05:00
|
|
|
#ifndef _THE_RUBY_RACER_
|
|
|
|
#define _THE_RUBY_RACER_
|
|
|
|
|
|
|
|
#include <ruby.h>
|
2010-05-11 12:41:07 -05:00
|
|
|
#include <v8.h>
|
2010-05-08 12:34:52 -05:00
|
|
|
|
2010-05-10 10:16:26 -05:00
|
|
|
#define rr_define_method(klass, name, impl, argc) rb_define_method(klass, name, (VALUE(*)(...))impl, argc)
|
|
|
|
#define rr_define_singleton_method(object, name, impl, argc) rb_define_singleton_method(object, name, (VALUE(*)(...))impl, argc)
|
2010-05-08 12:34:52 -05:00
|
|
|
|
2010-05-10 07:56:52 -05:00
|
|
|
VALUE rr_define_class(const char *name, VALUE superclass = rb_cObject);
|
2010-08-06 10:24:01 -05:00
|
|
|
VALUE rr_define_module(const char *name);
|
2010-05-22 09:15:00 +03:00
|
|
|
VALUE rr_define_const(const char *name, VALUE value);
|
2010-05-08 12:58:43 -05:00
|
|
|
|
2010-05-13 16:53:09 -05:00
|
|
|
VALUE rr_v82rb(v8::Handle<v8::Value> value);
|
|
|
|
VALUE rr_v82rb(v8::Handle<v8::Boolean> value);
|
|
|
|
VALUE rr_v82rb(v8::Handle<v8::Number> value);
|
|
|
|
VALUE rr_v82rb(v8::Handle<v8::String> value);
|
|
|
|
VALUE rr_v82rb(v8::Handle<v8::Object> value);
|
2010-11-08 16:23:16 -06:00
|
|
|
VALUE rr_v82rb(v8::Handle<v8::Array> value);
|
2010-05-13 16:53:09 -05:00
|
|
|
VALUE rr_v82rb(v8::Handle<v8::Function> value);
|
|
|
|
VALUE rr_v82rb(v8::Handle<v8::Integer> value);
|
|
|
|
VALUE rr_v82rb(v8::Handle<v8::Uint32> value);
|
|
|
|
VALUE rr_v82rb(v8::Handle<v8::Int32> value);
|
2010-05-18 13:27:23 +03:00
|
|
|
VALUE rr_v82rb(v8::Handle<v8::Message> value);
|
2010-11-08 16:23:16 -06:00
|
|
|
VALUE rr_v82rb(v8::Handle<v8::StackTrace> value);
|
|
|
|
VALUE rr_v82rb(v8::Handle<v8::StackFrame> value);
|
|
|
|
|
2010-05-13 16:53:09 -05:00
|
|
|
VALUE rr_v82rb(bool value);
|
|
|
|
VALUE rr_v82rb(double value);
|
|
|
|
VALUE rr_v82rb(int64_t value);
|
|
|
|
VALUE rr_v82rb(uint32_t value);
|
|
|
|
VALUE rr_v82rb(int32_t value);
|
|
|
|
|
|
|
|
v8::Handle<v8::Value> rr_rb2v8(VALUE value);
|
2010-05-11 12:41:07 -05:00
|
|
|
|
2010-06-14 18:27:01 +03:00
|
|
|
#endif
|