summaryrefslogtreecommitdiffstats
path: root/devtools/shared/tests/xpcshell/throwing-module-1.js
blob: cc7e159a761ba827f08615c349a864c117a4c503 (plain)
1
2
3
4
5
6
7
"use strict";

function throwingMethod() {
  throw new Error("my-exception");
}

throwingMethod();