summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.search/cstm-exec-return-invalid.js
blob: 81d509c332006c790fb022a05163dca925ba5b2d (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
47
48
49
50
51
52
53
54
55
56
57
58
// Copyright (C) 2015 Mike Pennisi. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es6id: 21.2.5.9
description: Behavior when invalid value is returned by custom `exec` method
info: |
    [...]
    9. Let result be RegExpExec(rx, S).
    10. ReturnIfAbrupt(result).
    [...]
    14. Return Get(result, "index").

    21.2.5.2.1 Runtime Semantics: RegExpExec ( R, S )

    [...]
    5. If IsCallable(exec) is true, then
       a. Let result be Call(exec, R, «S»).
       b. ReturnIfAbrupt(result).
       c. If Type(result) is neither Object or Null, throw a TypeError
          exception.

features: [Symbol, Symbol.search]
---*/

var retVal;
var fakeRe = {
  exec: function() {
    return retVal;
  }
};

retVal = undefined;
assert.throws(TypeError, function() {
  RegExp.prototype[Symbol.search].call(fakeRe, 'a');
});

retVal = 86;
assert.throws(TypeError, function() {
  RegExp.prototype[Symbol.search].call(fakeRe, 'a');
});

retVal = 'string';
assert.throws(TypeError, function() {
  RegExp.prototype[Symbol.search].call(fakeRe, 'a');
});

retVal = true;
assert.throws(TypeError, function() {
  RegExp.prototype[Symbol.search].call(fakeRe, 'a');
});

retVal = Symbol();
assert.throws(TypeError, function() {
  RegExp.prototype[Symbol.search].call(fakeRe, 'a');
});

reportCompare(0, 0);