summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/browser/test-eval-error.html
blob: 8f16a0320c37022b6e1bb452893a22223a5b9614 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<script>
/* eslint-disable no-unused-vars */
"use strict";

function throwErrorObject() {
  throw new Error("ThrowErrorObject");
}

function throwValue(value) {
  otherFunction(value);
}

function otherFunction(value) {
  throw value;
}
</script>