mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
18 lines
308 B
C
18 lines
308 B
C
![]() |
#ifndef RR_HANDLES
|
||
|
#define RR_HANDLES
|
||
|
|
||
|
namespace rr {
|
||
|
|
||
|
class Handles {
|
||
|
public:
|
||
|
static void Init();
|
||
|
static VALUE HandleScope(int argc, VALUE* argv, VALUE self);
|
||
|
private:
|
||
|
static VALUE SetupAndCall(Isolate isolate, int* state, VALUE code);
|
||
|
static VALUE DoCall(VALUE code);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|