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

17 lines
350 B
C++
Raw Normal View History

#include "converters.h"
2009-12-18 02:48:06 -05:00
#include "v8_msg.h"
#include "v8_ref.h"
using namespace v8;
VALUE V8_C_Message;
VALUE V8_Wrap_Message(Handle<v8::Message> msg) {
return V8_Ref_Create(V8_C_Message, msg);
}
VALUE v8_Message_Get(VALUE self) {
Local<Message> message = V8_Ref_Get<Message>(self);
Local<Value> str = message->Get();
return V82RB(str);
2009-12-18 02:48:06 -05:00
}