Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
test
/
e2e
/
resources
/
sources
/
multi-files-mycode.js
blob: cb3513fa1f119e5aa495fcd571e40727bd1f54d6 [
file
] [
log
] [
blame
]
import
{
callfunc
}
from
'./multi-files-thirdparty.js'
;
function
inner
()
{
console
.
log
(
'Hello'
);
}
export
function
outer
()
{
callfunc
(
inner
);
}
export
function
userTimeout
()
{
setTimeout
(()
=>
{},
0
);
}