summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemaps-reload-compressed/v1/script.js
blob: 522fa404a002ec9c3138825450687269f6c88d7a (plain)
1
2
3
4
5
6
7
8
console.log("only one breakable line");
// And one non-breakable line

function nonSourceMappedFunction () {
  console.log("non source mapped function");
  // This will call a function from original-with-query.js
  return originalWithQuery();
}