summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/match/invoke-builtin-match.js
blob: f33db66debae50a1b9e772caeb1b0435738ccaa4 (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
// 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 @@match property of internally-created RegExps
es6id: 21.1.3.11
info: |
    [...]
    6. Let rx be RegExpCreate(regexp, undefined) (see 21.2.3.2.3).
    7. ReturnIfAbrupt(rx).
    8. Return Invoke(rx, @@match, «S»).
features: [Symbol.match]
---*/

var originalMatch = RegExp.prototype[Symbol.match];
var returnVal = {};
var result, thisVal, args;

RegExp.prototype[Symbol.match] = function() {
  thisVal = this;
  args = arguments;
  return returnVal;
};

try {
  result = 'target'.match('string source');

  assert(thisVal instanceof RegExp);
  assert.sameValue(thisVal.source, 'string source');
  assert.sameValue(thisVal.flags, '');
  assert.sameValue(thisVal.lastIndex, 0);
  assert.sameValue(args.length, 1);
  assert.sameValue(args[0], 'target');
  assert.sameValue(result, returnVal);
} finally {
  RegExp.prototype[Symbol.match] = originalMatch;
}

reportCompare(0, 0);