Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma_2 / String / replace-001.js
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is JavaScript Engine testing utilities.
16  *
17  * The Initial Developer of the Original Code is
18  * Netscape Communication Corporation.
19  * Portions created by the Initial Developer are Copyright (C) 1998
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38
39 /**
40  *  File Name:          String/replace-001.js
41  *  ECMA Section:       15.6.4.10
42  *  Description:        Based on ECMA 2 Draft 7 February 1999
43  *
44  *  Author:             christine@netscape.com
45  *  Date:               19 February 1999
46  */
47
48 var SECTION = "String/replace-001.js";
49 var VERSION = "ECMA_2";
50 var TITLE   = "String.prototype.replace( regexp, replaceValue )";
51
52 startTest();
53
54 /*
55  * If regexp is not an object of type RegExp, it is replaced with the
56  * result of the expression new RegExp(regexp).  Let string denote the
57  * result of converting the this value to a string.  String is searched
58  * for the first occurrence of the regular expression pattern regexp if
59  * regexp.global is false, or all occurrences if regexp.global is true.
60  *
61  * The match is performed as in String.prototype.match, including the
62  * update of regexp.lastIndex.  Let m be the number of matched
63  * parenthesized subexpressions as specified in section 15.7.5.3.
64  *
65  * If replaceValue is a function, then for each matched substring, call
66  * the function with the following m + 3 arguments. Argument 1 is the
67  * substring that matched. The next m arguments are all of the matched
68  * subexpressions. Argument m + 2 is the length of the left context, and
69  * argument m + 3 is string.
70  *
71  * The result is a string value derived from the original input by
72  * replacing each matched substring with the corresponding return value
73  * of the function call, converted to a string if need be.
74  *
75  * Otherwise, let newstring denote the result of converting replaceValue
76  * to a string. The result is a string value derived from the original
77  * input string by replacing each matched substring with a string derived
78  * from newstring by replacing characters in newstring by replacement text
79  * as specified in the following table:
80  *
81  * $& The matched substring.
82  * $\91 The portion of string that precedes the matched substring.
83  * $\92 The portion of string that follows the matched substring.
84  * $+ The substring matched by the last parenthesized subexpressions in
85  *      the regular expression.
86  * $n The corresponding matched parenthesized subexpression n, where n
87  * is a single digit 0-9. If there are fewer than n subexpressions, \93$n
88  * is left unchanged.
89  *
90  * Note that the replace function is intentionally generic; it does not
91  * require that its this value be a string object. Therefore, it can be
92  * transferred to other kinds of objects for use as a method.
93  */
94
95
96 AddTestCase( "NO TESTS EXIST", "PASSED", "Test not implemented");
97
98 test();