FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cloud-debug-nodejs/test/test-v8debugapi-code.js at main · googleapis/cloud-debug-nodejs · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Apr 3, 2024. It is now read-only.
googleapis
/
cloud-debug-nodejs
Public archive
Notifications
You must be signed in to change notification settings
Fork
50
Star
167
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cloud-debug-nodejs
/
test
/
test-v8debugapi-code.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
15 lines (15 loc) · 456 Bytes
Breadcrumbs
cloud-debug-nodejs
/
test
/
test-v8debugapi-code.js
Copy path
File metadata and controls
15 lines (15 loc) · 456 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
/*1* KEEP THIS CODE AT THE TOP TO AVOID LINE NUMBER CHANGES */
/*2*/
'use strict'
;
/*3*/
function
foo
(
n
)
{
/*4*/
// some comments.
/*5*/
var
A
=
[
1
,
2
,
3
]
;
var
B
=
{
a
:
5
,
b
:
6
,
c
:
7
}
;
/*6*/
return
n
+
42
+
A
[
0
]
+
B
.
b
;
/*7*/
}
/*8*/
function
getterObject
(
)
{
/*9*/
var
hasGetter
=
{
_a
:
5
,
get
a
(
)
{
return
this
.
_a
;
}
,
b
:
'hello world'
}
;
/*10*/
return
hasGetter
.
a
;
/*11*/
}
/*12*/
module
.
exports
=
{
/*13*/
foo
:
foo
,
/*14*/
getterObject
:
getterObject
/*15*/
}
;
Back
|
FazBrowse Home
|
New Git URL