summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemaps-reload-compressed/v1/test-functions.js
blob: d81399b3fe350a72dde2282b8e36f68667a2d082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * This file contains various test functions called by the test script via `await invokeInTab("functionName");`.
 */
function breakInEval() {
  eval(`
    debugger;

    window.evaledFunc = function() {
      var foo = 1;
      var bar = 2;
      return foo + bar;
    };
  `);
}