-
-
Notifications
You must be signed in to change notification settings - Fork 528
Expand file tree
/
Copy pathisolatedata.cpp
More file actions
38 lines (28 loc) · 878 Bytes
/
isolatedata.cpp
File metadata and controls
38 lines (28 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*********************************************************************
* NAN - Native Abstractions for Node.js
*
* Copyright (c) 2015 NAN contributors
*
* MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
********************************************************************/
#include <nan.h>
using namespace Nan; // NOLINT(build/namespaces)
struct Dummy {
int value;
};
NAN_METHOD(SetAndGet) {
Dummy *d0 = new Dummy;
Dummy *d1 = NULL;
v8::Isolate *isolate = v8::Isolate::GetCurrent();
SetIsolateData<Dummy>(isolate, d0);
d1 = GetIsolateData<Dummy>(isolate);
delete d1;
info.GetReturnValue().Set(New<v8::Boolean>(d0 == d1));
}
void Init(v8::Local<v8::Object> target) {
Set(target
, New<v8::String>("setAndGet").ToLocalChecked()
, New<v8::FunctionTemplate>(SetAndGet)->GetFunction()
);
}
NAN_MODULE(isolatedata, Init)