summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/getOwnPropertyDescriptors/shell.js
diff options
context:
space:
mode:
authorGaming4JC <g4jc@hyperbola.info>2019-06-08 18:45:02 -0400
committerGaming4JC <g4jc@hyperbola.info>2019-07-18 22:38:21 -0400
commit9476f2e018856139f92e96e8e738bbbab615e67d (patch)
treeb79082220b051c84437cbfd837040a1208726562 /js/src/tests/test262/built-ins/Object/getOwnPropertyDescriptors/shell.js
parent2ea840b045e7db434d6960f72f5313b9621ffd03 (diff)
downloadUXP-9476f2e018856139f92e96e8e738bbbab615e67d.tar
UXP-9476f2e018856139f92e96e8e738bbbab615e67d.tar.gz
UXP-9476f2e018856139f92e96e8e738bbbab615e67d.tar.lz
UXP-9476f2e018856139f92e96e8e738bbbab615e67d.tar.xz
UXP-9476f2e018856139f92e96e8e738bbbab615e67d.zip
1175823 - Import test262 mapped arguments tests.
Diffstat (limited to 'js/src/tests/test262/built-ins/Object/getOwnPropertyDescriptors/shell.js')
-rw-r--r--js/src/tests/test262/built-ins/Object/getOwnPropertyDescriptors/shell.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/js/src/tests/test262/built-ins/Object/getOwnPropertyDescriptors/shell.js b/js/src/tests/test262/built-ins/Object/getOwnPropertyDescriptors/shell.js
index 6ed766e94..e69de29bb 100644
--- a/js/src/tests/test262/built-ins/Object/getOwnPropertyDescriptors/shell.js
+++ b/js/src/tests/test262/built-ins/Object/getOwnPropertyDescriptors/shell.js
@@ -1,27 +0,0 @@
-var assert = {
- sameValue: assertEq,
- notSameValue(a, b, msg) {
- try {
- assertEq(a, b);
- throw "equal"
- } catch (e) {
- if (e === "equal")
- throw new Error("Assertion failed: expected different values, got " + a);
- }
- },
- throws(ctor, f) {
- var fullmsg;
- try {
- f();
- } catch (exc) {
- if (exc instanceof ctor)
- return;
- fullmsg = "Assertion failed: expected exception " + ctor.name + ", got " + exc;
- }
- if (fullmsg === undefined)
- fullmsg = "Assertion failed: expected exception " + ctor.name + ", no exception thrown";
- if (msg !== undefined)
- fullmsg += " - " + msg;
- throw new Error(fullmsg);
- }
-}