summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/replace/cstm-replace-invocation.js
blob: bde2b7ee0b88a60725737420a74a9af567e54873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: Invocation of @@replace property of user-supplied objects
es6id: 21.1.3.14
info: |
    [...]
    3. If searchValue is neither undefined nor null, then
       a. Let replacer be GetMethod(searchValue, @@replace).
       b. ReturnIfAbrupt(replacer).
       c. If replacer is not undefined, then
          i. Return Call(replacer, searchValue, «O, replaceValue»).
features: [Symbol.replace]
---*/

var searchValue = {};
var returnVal = {};
var callCount = 0;
var thisVal, args;

searchValue[Symbol.replace] = function() {
  callCount += 1;
  thisVal = this;
  args = arguments;
  return returnVal;
};

assert.sameValue(''.replace(searchValue, 'replace value'), returnVal);
assert.sameValue(thisVal, searchValue);
assert.notSameValue(args, undefined);
assert.sameValue(args.length, 2);
assert.sameValue(args[0], '');
assert.sameValue(args[1], 'replace value');

reportCompare(0, 0);