summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemaps-reload-uncompressed/v1/original.js
blob: 9fbbc80ad3a344d75cfcf851b733171aa2a87e82 (plain)
1
2
3
4
5
6
7
8
9
10
window.bar = function bar() {
  return new Promise(resolve => setTimeout(resolve, 100))
}

window.foo = async function foo() {
  // This will call a function from script.js, itself calling a function
  // from original-with-query.js
  await nonSourceMappedFunction();
  console.log("YO")
}