FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
nan/test/cpp/returnvalue.cpp at main · nodejs/nan · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
nodejs
/
nan
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
529
Star
3.4k
Code
Issues
57
Pull requests
15
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
nan
/
test
/
cpp
/
returnvalue.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
59 lines (49 loc) · 1.53 KB
Breadcrumbs
nan
/
test
/
cpp
/
returnvalue.cpp
Copy path
File metadata and controls
59 lines (49 loc) · 1.53 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
********************************************************************
* NAN - Native Abstractions for Node.js
*
* Copyright (c) 2018 NAN contributors
*
* MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
*******************************************************************
*/
#
include
<
nan.h
>
using
namespace
Nan
;
//
NOLINT(build/namespaces)
static
Global<v8::Boolean> global;
NAN_METHOD
(ReturnAValue) {
const
FunctionCallbackInfo<v8::Value> &cbinfo = info;
ReturnValue<v8::Value> ret = cbinfo.
GetReturnValue
();
if
(cbinfo.
Length
() ==
1
) {
ret.
Set
(To<v8::String>(info[
0
]).
ToLocalChecked
());
}
else
{
ret.
Set
(
New
(
"
default
"
).
ToLocalChecked
());
}
}
NAN_METHOD
(ReturnPrimitive) {
info.
GetReturnValue
().
Set
(
true
);
}
NAN_METHOD
(ReturnGlobal) {
info.
GetReturnValue
().
Set
(global);
global.
Reset
();
}
NAN_METHOD
(ReturnUnsigned) {
info.
GetReturnValue
().
Set
(
0x80000000u
);
}
NAN_MODULE_INIT
(Init) {
global.
Reset
(
New
(
true
));
Set
(target
, New<v8::String>(
"
r
"
).
ToLocalChecked
()
,
GetFunction
(New<v8::FunctionTemplate>(ReturnAValue)).
ToLocalChecked
()
);
Set
(target
, New<v8::String>(
"
p
"
).
ToLocalChecked
()
,
GetFunction
(New<v8::FunctionTemplate>(ReturnPrimitive)).
ToLocalChecked
()
);
Set
(target
, New<v8::String>(
"
q
"
).
ToLocalChecked
()
,
GetFunction
(New<v8::FunctionTemplate>(ReturnGlobal)).
ToLocalChecked
()
);
Set
(target
, New<v8::String>(
"
u
"
).
ToLocalChecked
()
,
GetFunction
(New<v8::FunctionTemplate>(ReturnUnsigned)).
ToLocalChecked
()
);
}
NODE_MODULE
(returnvalue, Init)
Back
|
FazBrowse Home
|
New Git URL