blob: 630ed8338fdb9a332b460497ef361a6d98526f1a [file] [log] [blame]
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Behavior when error is thrown while accessing `0` property of result
es6id: 21.2.5.8
info: |
[...]
13. Repeat, while done is false
a. Let result be RegExpExec(rx, S).
[...]
16. Repeat, for each result in results,
[...]
d. Let matched be ToString(Get(result, "0")).
e. ReturnIfAbrupt(matched).
features: [Symbol.replace]
---*/
var r = /./;
var poisonedValue = {
get 0() {
throw new Test262Error();
}
};
r.exec = function() {
return poisonedValue;
};
assert.throws(Test262Error, function() {
r[Symbol.replace]('a', 'b');
});