summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/arguments/rest-invalid-syntax.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/arguments/rest-invalid-syntax.js')
-rw-r--r--js/src/jit-test/tests/arguments/rest-invalid-syntax.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/arguments/rest-invalid-syntax.js b/js/src/jit-test/tests/arguments/rest-invalid-syntax.js
new file mode 100644
index 0000000000..f91d93ea62
--- /dev/null
+++ b/js/src/jit-test/tests/arguments/rest-invalid-syntax.js
@@ -0,0 +1,12 @@
+load(libdir + "asserts.js");
+var ieval = eval;
+var offenders = [["..."], ["...rest"," x"], ["...rest", "[x]"],
+ ["...rest", "...rest2"]];
+for (var arglist of offenders) {
+ assertThrowsInstanceOf(function () {
+ ieval("function x(" + arglist.join(", ") + ") {}");
+ }, SyntaxError);
+ assertThrowsInstanceOf(function () {
+ Function.apply(null, arglist.concat("return 0;"));
+ }, SyntaxError);
+} \ No newline at end of file