summaryrefslogtreecommitdiffstats
path: root/devtools/server/tests/xpcshell/completions.js
blob: 5e77e4e886483b49649a4bd61da32e1f83eea49a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"use strict";
/* exported global doRet doThrow */

function ret() {
  return 2;
}

function throws() {
  throw new Error("yo");
}

function doRet() {
  debugger;
  const r = ret();
  return r;
}

function doThrow() {
  debugger;
  try {
    throws();
  } catch (e) {}
}