summaryrefslogtreecommitdiffstats
path: root/js/src/tests/js1_7/geniter/message-value-passing.js
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /js/src/tests/js1_7/geniter/message-value-passing.js
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'js/src/tests/js1_7/geniter/message-value-passing.js')
-rw-r--r--js/src/tests/js1_7/geniter/message-value-passing.js88
1 files changed, 88 insertions, 0 deletions
diff --git a/js/src/tests/js1_7/geniter/message-value-passing.js b/js/src/tests/js1_7/geniter/message-value-passing.js
new file mode 100644
index 000000000..626c788be
--- /dev/null
+++ b/js/src/tests/js1_7/geniter/message-value-passing.js
@@ -0,0 +1,88 @@
+/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+//-----------------------------------------------------------------------------
+var BUGNUMBER = 326466;
+var summary = "Generator value/exception passing";
+var actual, expect;
+
+printBugNumber(BUGNUMBER);
+printStatus(summary);
+
+/**************
+ * BEGIN TEST *
+ **************/
+
+function gen()
+{
+ var rv, rv2, rv3, rv4;
+ rv = yield 1;
+
+ if (rv)
+ rv2 = yield rv;
+ else
+ rv3 = yield 2;
+
+ try
+ {
+ if (rv2)
+ yield rv2;
+ else
+ rv3 = yield 3;
+ }
+ catch (e)
+ {
+ if (e == 289)
+ yield "exception caught";
+ }
+
+ yield 5;
+}
+
+var failed = false;
+var it = gen();
+
+try
+{
+ if (it.next() != 1)
+ throw "failed on 1";
+
+ if (it.send(17) != 17)
+ throw "failed on 17";
+
+ if (it.next() != 3)
+ throw "failed on 3";
+
+ if (it.throw(289) != "exception caught")
+ throw "it.throw(289) failed";
+
+ if (it.next() != 5)
+ throw "failed on 5";
+
+ var stopPassed = false;
+ try
+ {
+ it.next();
+ }
+ catch (e)
+ {
+ if (e === StopIteration)
+ stopPassed = true;
+ }
+
+ if (!stopPassed)
+ throw "missing or incorrect StopIteration";
+}
+catch (e)
+{
+ failed = e;
+}
+
+
+
+expect = false;
+actual = failed;
+
+reportCompare(expect, actual, summary);