summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.matchAll/species-regexp-get-unicode-throws.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/RegExp/prototype/Symbol.matchAll/species-regexp-get-unicode-throws.js')
-rw-r--r--js/src/tests/test262/built-ins/RegExp/prototype/Symbol.matchAll/species-regexp-get-unicode-throws.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.matchAll/species-regexp-get-unicode-throws.js b/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.matchAll/species-regexp-get-unicode-throws.js
new file mode 100644
index 0000000000..f58fe1169b
--- /dev/null
+++ b/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.matchAll/species-regexp-get-unicode-throws.js
@@ -0,0 +1,33 @@
+// Copyright (C) 2018 Peter Wong. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: pending
+description: |
+ Doesn't access the "unicode" property of the constructed RegExp
+info: |
+ RegExp.prototype [ @@matchAll ] ( string )
+ [...]
+ 4. Let C be ? SpeciesConstructor(R, %RegExp%).
+ 5. Let flags be ? ToString(? Get(R, "flags")).
+ 6. Let matcher be ? Construct(C, « R, flags »).
+ [...]
+ 11. If flags contains "u", let fullUnicode be true.
+ 12. Else, let fullUnicode be false.
+ [...]
+features: [Symbol.matchAll, Symbol.species]
+---*/
+
+var regexp = /./;
+regexp.constructor = {
+ [Symbol.species]: function() {
+ return Object.defineProperty(/./, 'unicode', {
+ get() {
+ throw new Test262Error();
+ }
+ });
+ }
+};
+
+regexp[Symbol.matchAll]('');
+
+reportCompare(0, 0);