summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.replace/result-get-groups-err.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/RegExp/prototype/Symbol.replace/result-get-groups-err.js')
-rw-r--r--js/src/tests/test262/built-ins/RegExp/prototype/Symbol.replace/result-get-groups-err.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.replace/result-get-groups-err.js b/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.replace/result-get-groups-err.js
new file mode 100644
index 0000000000..808cb84b15
--- /dev/null
+++ b/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.replace/result-get-groups-err.js
@@ -0,0 +1,36 @@
+// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-regexp.prototype-@@replace
+description: >
+ Abrupt completion during lookup of "groups"
+ property of the value returned by RegExpExec.
+info: |
+ RegExp.prototype [ @@replace ] ( string, replaceValue )
+
+ [...]
+ 14. For each result in results, do
+ [...]
+ j. Let namedCaptures be ? Get(result, "groups").
+features: [Symbol.replace, regexp-named-groups]
+---*/
+
+var r = /./;
+var coercibleValue = {
+ length: 0,
+ index: 0,
+ get groups() {
+ throw new Test262Error();
+ },
+};
+
+r.exec = function() {
+ return coercibleValue;
+};
+
+assert.throws(Test262Error, function() {
+ r[Symbol.replace]('a', '$<foo>');
+});
+
+reportCompare(0, 0);