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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
var BUGNUMBER = 1147817;
var summary = "RegExp constructor with pattern with @@match.";
print(BUGNUMBER + ": " + summary);
var matchValue;
var constructorValue;
var matchGet;
var constructorGet;
var sourceGet;
var flagsGet;
function reset() {
matchGet = false;
constructorGet = false;
sourceGet = false;
flagsGet = false;
}
var obj = {
get [Symbol.match]() {
matchGet = true;
return matchValue;
},
get constructor() {
constructorGet = true;
return constructorValue;
},
get source() {
sourceGet = true;
return "foo";
},
get flags() {
flagsGet = true;
return "i";
},
toString() {
return "bar";
}
};
matchValue = true;
constructorValue = function() {};
reset();
assertEq(RegExp(obj).toString(), "/foo/i");
assertEq(matchGet, true);
assertEq(constructorGet, true);
assertEq(sourceGet, true);
assertEq(flagsGet, true);
reset();
assertEq(RegExp(obj, "g").toString(), "/foo/g");
assertEq(matchGet, true);
assertEq(constructorGet, false);
assertEq(sourceGet, true);
assertEq(flagsGet, false);
matchValue = false;
constructorValue = function() {};
reset();
assertEq(RegExp(obj).toString(), "/bar/");
assertEq(matchGet, true);
assertEq(constructorGet, false);
assertEq(sourceGet, false);
assertEq(flagsGet, false);
reset();
assertEq(RegExp(obj, "g").toString(), "/bar/g");
assertEq(matchGet, true);
assertEq(constructorGet, false);
assertEq(sourceGet, false);
assertEq(flagsGet, false);
matchValue = true;
constructorValue = RegExp;
reset();
assertEq(RegExp(obj), obj);
assertEq(matchGet, true);
assertEq(constructorGet, true);
assertEq(sourceGet, false);
assertEq(flagsGet, false);
if (typeof reportCompare === "function")
reportCompare(true, true);
|