blob: a307db302713871c70b5b707b22d9f0bb16ce0f0 [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 during retrieval of `global` property
es6id: 21.2.5.8
info: |
[...]
8. Let global be ToBoolean(Get(rx, "global")).
9. ReturnIfAbrupt(global).
features: [Symbol.replace]
---*/
var obj = {
get global() {
throw new Test262Error();
}
};
assert.throws(Test262Error, function() {
RegExp.prototype[Symbol.replace].call(obj);
});