-1:000000000000 | 0:18aeb5beefc0 |
---|---|
1 /* | |
2 * Any copyright is dedicated to the Public Domain. | |
3 * http://creativecommons.org/licenses/publicdomain/ | |
4 */ | |
5 | |
6 var BUGNUMBER = 614603; | |
7 var summary = "RegExp.length"; | |
8 | |
9 print(BUGNUMBER + ": " + summary); | |
10 | |
11 /************** | |
12 * BEGIN TEST * | |
13 **************/ | |
14 | |
15 assertEq(RegExp.length, 2); | |
16 assertEq(/a/.constructor.length, 2); | |
17 | |
18 if (typeof reportCompare === "function") | |
19 reportCompare(true, true); | |
20 | |
21 print("All tests passed!"); |