Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
test
/
e2e
/
resources
/
sources
/
sourcemap-stepping-source.js
blob: 9b69d3401db4a09eebc65dc61297b79bb2f6e65a [
file
] [
log
] [
blame
]
function
add
(
a
,
b
)
{
return
a
+
b
;
}
function
multiline
()
{
const
x
=
add
(
1
,
2
);
const
y
=
add
(
3
,
4
);
const
z
=
add
(
x
,
y
);
console
.
log
(
z
);
}
function
singleline
()
{
const
x
=
add
(
1
,
2
);
const
y
=
add
(
3
,
4
);
const
z
=
add
(
x
,
y
);
console
.
log
(
z
);
}