summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.replace/exec-invocation.js
blob: 54f4b7b59edf4cf51d615d644b70a5d439493a47 (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
37
38
39
40
41
42
43
44
45
46
// 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 `exec` method
es6id: 21.2.5.8
info: |
    [...]
    13. Repeat, while done is false
        a. Let result be RegExpExec(rx, S).
        [...]

    21.2.5.2.1 Runtime Semantics: RegExpExec ( R, S )

    [...]
    3. Let exec be Get(R, "exec").
    4. ReturnIfAbrupt(exec).
    5. If IsCallable(exec) is true, then
       a. Let result be Call(exec, R, «S»).
features: [Symbol.replace]
---*/

var r = /./;
var callCount = 0;
var arg = {
  toString: function() {
    return 'string form';
  }
};
var thisValue, args;

r.exec = function() {
  thisValue = this;
  args = arguments;
  callCount += 1;
  return null;
};

r[Symbol.replace](arg, '');

assert.sameValue(callCount, 1);
assert.sameValue(thisValue, r);
assert.sameValue(args.length, 1);
assert.sameValue(args[0], 'string form');

reportCompare(0, 0);