mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
10 lines
No EOL
154 B
C++
10 lines
No EOL
154 B
C++
|
|
#include "v8_func.h"
|
|
|
|
using namespace v8;
|
|
|
|
VALUE V8_C_Function;
|
|
|
|
VALUE V8_Wrap_Function(Handle<Function> f) {
|
|
return V8_Ref_Create(V8_C_Function, f);
|
|
} |