diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-17 17:01:42 +0100 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-17 17:01:42 +0100 |
commit | 9ecabc46eb6adb35610698dbbea25a0bb580cc9e (patch) | |
tree | a136230a5720fd027823be67c96128bdd7ed3f13 | |
parent | c00faa3d194eb0d2154c314b4220105c0d990c5d (diff) | |
download | UXP-9ecabc46eb6adb35610698dbbea25a0bb580cc9e.tar UXP-9ecabc46eb6adb35610698dbbea25a0bb580cc9e.tar.gz UXP-9ecabc46eb6adb35610698dbbea25a0bb580cc9e.tar.lz UXP-9ecabc46eb6adb35610698dbbea25a0bb580cc9e.tar.xz UXP-9ecabc46eb6adb35610698dbbea25a0bb580cc9e.zip |
Tests
-rw-r--r-- | js/src/tests/ecma_6/Error/constructor-proto.js | 17 | ||||
-rw-r--r-- | js/src/tests/ecma_6/Error/prototype.js | 18 | ||||
-rw-r--r-- | js/src/tests/ecma_6/Error/shell.js | 0 |
3 files changed, 35 insertions, 0 deletions
diff --git a/js/src/tests/ecma_6/Error/constructor-proto.js b/js/src/tests/ecma_6/Error/constructor-proto.js new file mode 100644 index 000000000..4ddc6025e --- /dev/null +++ b/js/src/tests/ecma_6/Error/constructor-proto.js @@ -0,0 +1,17 @@ +const nativeErrors = [ + InternalError, + EvalError, + RangeError, + ReferenceError, + SyntaxError, + TypeError, + URIError +]; + +assertEq(Reflect.getPrototypeOf(Error), Function.prototype) + +for (const error of nativeErrors) + assertEq(Reflect.getPrototypeOf(error), Error); + +if (typeof reportCompare === "function") + reportCompare(0, 0); diff --git a/js/src/tests/ecma_6/Error/prototype.js b/js/src/tests/ecma_6/Error/prototype.js new file mode 100644 index 000000000..b22a8e084 --- /dev/null +++ b/js/src/tests/ecma_6/Error/prototype.js @@ -0,0 +1,18 @@ +const nativeErrors = [ + InternalError, + EvalError, + RangeError, + ReferenceError, + SyntaxError, + TypeError, + URIError +]; + +assertEq(Reflect.getPrototypeOf(Error.prototype), Object.prototype) + +for (const error of nativeErrors) { + assertEq(Reflect.getPrototypeOf(error.prototype), Error.prototype); +} + +if (typeof reportCompare === "function") + reportCompare(0, 0); diff --git a/js/src/tests/ecma_6/Error/shell.js b/js/src/tests/ecma_6/Error/shell.js new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/js/src/tests/ecma_6/Error/shell.js |