FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node/src/node_javascript.cc at master · bderagon/node · GitHub
bderagon
/
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
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
node
/
src
/
node_javascript.cc
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (31 loc) · 1009 Bytes
Breadcrumbs
node
/
src
/
node_javascript.cc
Copy path
File metadata and controls
38 lines (31 loc) · 1009 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#
include
"
node.h
"
#
include
"
node_natives.h
"
#
include
"
v8.h
"
#
include
"
env.h
"
#
include
"
env-inl.h
"
#
include
<
string.h
>
#
if
!defined(_MSC_VER)
#
include
<
strings.h
>
#
endif
namespace
node
{
using
v8::HandleScope;
using
v8::Local;
using
v8::Object;
using
v8::String;
Local<String>
MainSource
(Environment* env) {
return
OneByteString
(env->
isolate
(), node_native,
sizeof
(node_native) -
1
);
}
void
DefineJavaScript
(Environment* env, Local<Object> target) {
HandleScope
scope
(env->
isolate
());
for
(
int
i =
0
; natives[i].
name
; i++) {
if
(natives[i].
source
!= node_native) {
Local<String> name =
String::NewFromUtf8
(env->
isolate
(), natives[i].
name
);
Local<String> source =
String::NewFromUtf8
(env->
isolate
(),
natives[i].
source
,
String::
kNormalString
,
natives[i].
source_len
);
target->
Set
(name, source);
}
}
}
}
//
namespace node
Back
|
FazBrowse Home
|
New Git URL