#include #include #include "v8_ref.h" #include "v8_func.h" #include "v8_template.h" #include "v8_external.h" #include "v8_callbacks.h" #include "callbacks.h" #include "converters.h" using namespace v8; namespace { VALUE rb_hash_lookup(VALUE hash, const char *key) { return ::rb_hash_lookup(hash, rb_str_new2(key)); } VALUE rb_hash_aset(VALUE hash, const char *key, VALUE value) { return ::rb_hash_aset(hash, rb_str_new2(key), value); } Local