summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/examples/sourcemapped/output/rollup/step-over-for-of.js
blob: 09c47a7ed4c7ce1ff5a60e7b5f4445442d39f5b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
var rollupStepOverForOf = (function () {
  'use strict';

  const vals = [1, 2];

  function root() {
    console.log("pause here");

    for (const val of vals) {
      console.log("pause again", val);
    }

    console.log("done");
  }

  return root;

}());
//# sourceMappingURL=step-over-for-of.js.map