summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/built-ins/RegExp/prototype/compile/pattern-regexp-flags-defined.js
blob: 6ea536960c0301e1a7bbe61da03270bcf8236ea3 (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) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-regexp.prototype.compile
es6id: B.2.5.1
description: >
    Behavior when provided pattern is a RegExp instance and flags are specified
info: |
    [...]
    3. If Type(pattern) is Object and pattern has a [[RegExpMatcher]] internal
       slot, then
       a. If flags is not undefined, throw a TypeError exception.
---*/

var re = /./;
re.lastIndex = 23;

assert.sameValue(typeof RegExp.prototype.compile, 'function');

assert.throws(TypeError, function() {
  re.compile(re, null);
}, 'null');

assert.throws(TypeError, function() {
  re.compile(re, 0);
}, 'numeric primitive');

assert.throws(TypeError, function() {
  re.compile(re, '');
}, 'string primitive');

assert.throws(TypeError, function() {
  re.compile(re, false);
}, 'boolean primitive');

assert.throws(TypeError, function() {
  re.compile(re, {});
}, 'ordinary object');

assert.throws(TypeError, function() {
  re.compile(re, []);
}, 'array exotic object');

assert.sameValue(re.lastIndex, 23);

reportCompare(0, 0);