blob: ecc0fbb8ccc27f555adbe662f3e478d2004ce9b9 (
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(value) {
throw new Error("ThrowErrorObject");
}
function throwValue(value) {
otherFunction(value);
}
function otherFunction(value) {
throw value;
}
</script>
|