diff options
Diffstat (limited to 'js/src/tests/non262/Iterator/constructor-throw-when-called-directly.js')
-rw-r--r-- | js/src/tests/non262/Iterator/constructor-throw-when-called-directly.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/tests/non262/Iterator/constructor-throw-when-called-directly.js b/js/src/tests/non262/Iterator/constructor-throw-when-called-directly.js new file mode 100644 index 0000000000..2b49b2d4ba --- /dev/null +++ b/js/src/tests/non262/Iterator/constructor-throw-when-called-directly.js @@ -0,0 +1,9 @@ +// |reftest| skip-if(!this.hasOwnProperty('Iterator')) -- Iterator is not enabled unconditionally +/*--- + Iterator constructor throws when called directly. +---*/ + +assertThrowsInstanceOf(() => new Iterator(), TypeError); + +if (typeof reportCompare === 'function') + reportCompare(0, 0); |