test-eval-error.html (247B)
1 <script> 2 /* eslint-disable no-unused-vars */ 3 "use strict"; 4 5 function throwErrorObject() { 6 throw new Error("ThrowErrorObject"); 7 } 8 9 function throwValue(value) { 10 otherFunction(value); 11 } 12 13 function otherFunction(value) { 14 throw value; 15 } 16 </script>