diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /js/src/tests/ecma_2017/AsyncFunctions | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-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/ecma_2017/AsyncFunctions')
4 files changed, 87 insertions, 0 deletions
diff --git a/js/src/tests/ecma_2017/AsyncFunctions/browser.js b/js/src/tests/ecma_2017/AsyncFunctions/browser.js new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/js/src/tests/ecma_2017/AsyncFunctions/browser.js diff --git a/js/src/tests/ecma_2017/AsyncFunctions/cover-init-name-syntax.js b/js/src/tests/ecma_2017/AsyncFunctions/cover-init-name-syntax.js new file mode 100644 index 000000000..cb7858a67 --- /dev/null +++ b/js/src/tests/ecma_2017/AsyncFunctions/cover-init-name-syntax.js @@ -0,0 +1,65 @@ +/* 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/. */ + +// CoverInitName in async arrow parameters. +async ({a = 1}) => {}; +async ({a = 1}, {b = 2}) => {}; +async ({a = 1}, {b = 2}, {c = 3}) => {}; +async ({a = 1} = {}, {b = 2}, {c = 3}) => {}; +async ({a = 1} = {}, {b = 2} = {}, {c = 3}) => {}; +async ({a = 1} = {}, {b = 2} = {}, {c = 3} = {}) => {}; + +// CoverInitName nested in array destructuring. +async ([{a = 0}]) => {}; + +// CoverInitName nested in rest pattern. +async ([...[{a = 0}]]) => {}; + +// CoverInitName nested in object destructuring. +async ({p: {a = 0}}) => {}; + +// CoverInitName in CoverCallExpressionAndAsyncArrowHead, but not AsyncArrowHead. +assertThrowsInstanceOf(() => eval(` + NotAsync({a = 1}); +`), SyntaxError); +assertThrowsInstanceOf(() => eval(` + NotAsync({a = 1}, {b = 2}, {c = 3}); +`), SyntaxError); +assertThrowsInstanceOf(() => eval(` + NotAsync({a = 1}, {b = 2}, {c = 3} = {}); +`), SyntaxError); +assertThrowsInstanceOf(() => eval(` + NotAsync({a = 1}, {b = 2} = {}, {c = 3} = {}); +`), SyntaxError); + +// Starts with "async", but not called from AssignmentExpression. +assertThrowsInstanceOf(() => eval(` + typeof async({a = 1}); +`), SyntaxError); +assertThrowsInstanceOf(() => eval(` + typeof async({a = 1}, {b = 2}, {c = 3}); +`), SyntaxError); +assertThrowsInstanceOf(() => eval(` + typeof async({a = 1}, {b = 2}, {c = 3} = {}); +`), SyntaxError); +assertThrowsInstanceOf(() => eval(` + typeof async({a = 1}, {b = 2} = {}, {c = 3} = {}); +`), SyntaxError); + +// CoverInitName in CoverCallExpressionAndAsyncArrowHead, but not AsyncArrowHead. +assertThrowsInstanceOf(() => eval(` + obj.async({a = 1}); +`), SyntaxError); +assertThrowsInstanceOf(() => eval(` + obj.async({a = 1}, {b = 2}, {c = 3}); +`), SyntaxError); +assertThrowsInstanceOf(() => eval(` + obj.async({a = 1}, {b = 2}, {c = 3} = {}); +`), SyntaxError); +assertThrowsInstanceOf(() => eval(` + obj.async({a = 1}, {b = 2} = {}, {c = 3} = {}); +`), SyntaxError); + +if (typeof reportCompare === "function") + reportCompare(0, 0); diff --git a/js/src/tests/ecma_2017/AsyncFunctions/duplicate-__proto__.js b/js/src/tests/ecma_2017/AsyncFunctions/duplicate-__proto__.js new file mode 100644 index 000000000..d60b05248 --- /dev/null +++ b/js/src/tests/ecma_2017/AsyncFunctions/duplicate-__proto__.js @@ -0,0 +1,22 @@ +/* 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/. */ + +// Async arrow function parameters. +async ({__proto__: a, __proto__: b}) => {}; + +// Async arrow function parameters with defaults (initially parsed as destructuring assignment). +async ({__proto__: a, __proto__: b} = {}) => {}; + +// Duplicate __proto__ in CoverCallExpressionAndAsyncArrowHead, but not AsyncArrowHead. +assertThrowsInstanceOf(() => eval(` + NotAsync({__proto__: a, __proto__: b}); +`), SyntaxError); + +// Starts with "async", but not called from AssignmentExpression. +assertThrowsInstanceOf(() => eval(` + typeof async({__proto__: a, __proto__: b}); +`), SyntaxError); + +if (typeof reportCompare === "function") + reportCompare(0, 0); diff --git a/js/src/tests/ecma_2017/AsyncFunctions/shell.js b/js/src/tests/ecma_2017/AsyncFunctions/shell.js new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/js/src/tests/ecma_2017/AsyncFunctions/shell.js |