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

37 lines
1.2 KiB
C++
Raw Normal View History

#include "rr.h"
namespace rr {
void V8::Init() {
ClassBuilder("V8").
2012-05-25 16:53:13 -04:00
defineSingletonMethod("IdleNotification", &IdleNotification).
defineSingletonMethod("SetCaptureStackTraceForUncaughtExceptions", &SetCaptureStackTraceForUncaughtExceptions).
2012-06-14 04:52:32 -04:00
defineSingletonMethod("GetHeapStatistics", &GetHeapStatistics).
defineSingletonMethod("GetVersion", &GetVersion);
}
VALUE V8::IdleNotification(int argc, VALUE argv[], VALUE self) {
VALUE hint;
rb_scan_args(argc, argv, "01", &hint);
if (RTEST(hint)) {
return Bool(v8::V8::IdleNotification(NUM2INT(hint)));
} else {
return Bool(v8::V8::IdleNotification());
}
}
2012-05-25 16:53:13 -04:00
VALUE V8::SetCaptureStackTraceForUncaughtExceptions(int argc, VALUE argv[], VALUE self) {
VALUE should_capture; VALUE frame_limit; VALUE options;
rb_scan_args(argc, argv, "12", &should_capture, &frame_limit, &options);
int limit = RTEST(frame_limit) ? NUM2INT(frame_limit) : 10;
Void(v8::V8::SetCaptureStackTraceForUncaughtExceptions(Bool(should_capture), limit, Stack::Trace::StackTraceOptions(options)));
}
VALUE V8::GetHeapStatistics(VALUE self, VALUE statistics_ptr) {
Void(v8::V8::GetHeapStatistics(HeapStatistics(statistics_ptr)));
}
2012-06-14 04:52:32 -04:00
VALUE V8::GetVersion(VALUE self) {
return rb_str_new2(v8::V8::GetVersion());
}
}