blob: 5f9a58aee833c37f294eeb4abd56515a2c1c9704 [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: >
`this` value of functional replaceValue (outside of strict mode)
es6id: 21.2.5.8
info: |
16. Repeat, for each result in results,
[...]
m. If functionalReplace is true, then
i. Let replacerArgs be «matched».
ii. Append in list order the elements of captures to the end of the
List replacerArgs.
iii. Append position and S as the last two elements of replacerArgs.
iv. Let replValue be Call(replaceValue, undefined, replacerArgs).
[...]
flags: [noStrict]
features: [Symbol.replace]
---*/
var thisVal;
var replacer = function() {
thisVal = this;
};
/./[Symbol.replace]('x', replacer);
assert.sameValue(thisVal, this);