summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/coverage/bug1203695.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/coverage/bug1203695.js')
-rw-r--r--js/src/jit-test/tests/coverage/bug1203695.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/coverage/bug1203695.js b/js/src/jit-test/tests/coverage/bug1203695.js
new file mode 100644
index 000000000..5668e2dba
--- /dev/null
+++ b/js/src/jit-test/tests/coverage/bug1203695.js
@@ -0,0 +1,14 @@
+
+var lfcode = new Array();
+lfcode.push = loadFile;
+lfcode.push(")");
+lfcode.push(`
+assertThrowsInstanceOf(function () {}, TypeError);
+var g = newGlobal();
+`);
+getLcovInfo(g);
+function loadFile(lfVarx) {
+ try {
+ evaluate(lfVarx, { noScriptRval : true, compileAndGo : true });
+ } catch (lfVare) {}
+}