FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node/src/node_external_reference.cc at master · dev-script/node · GitHub
dev-script
/
node
Public
forked from
nodejs/node
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
node
/
src
/
node_external_reference.cc
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (18 loc) · 602 Bytes
Breadcrumbs
node
/
src
/
node_external_reference.cc
Copy path
File metadata and controls
22 lines (18 loc) · 602 Bytes
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
#
include
"
node_external_reference.h
"
#
include
<
cinttypes
>
#
include
<
vector
>
#
include
"
util.h
"
namespace
node
{
const
std::vector<
intptr_t
>&
ExternalReferenceRegistry::external_references
() {
CHECK
(!is_finalized_);
external_references_.
push_back
(
reinterpret_cast
<
intptr_t
>(
nullptr
));
is_finalized_ =
true
;
return
external_references_;
}
ExternalReferenceRegistry::ExternalReferenceRegistry
() {
#
define
V
(
modname
) _register_external_reference_##modname(
this
);
EXTERNAL_REFERENCE_BINDING_LIST
(V)
#
undef
V
//
TODO(joyeecheung): collect more external references here.
}
}
//
namespace node
Back
|
FazBrowse Home
|
New Git URL