~loic.molinari/+junk/qtdeclarative-shadereffectsource-changes

« back to all changes in this revision

Viewing changes to tests/auto/qml/parserstress/tests/ecma_2/String/replace-001.js

  • Committer: Loïc Molinari
  • Date: 2012-04-21 17:59:51 UTC
  • Revision ID: loic.molinari@canonical.com-20120421175951-bqx68caaf5zrp76l
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
gTestfile = 'replace-001.js';
 
39
 
 
40
/**
 
41
 *  File Name:          String/replace-001.js
 
42
 *  ECMA Section:       15.6.4.10
 
43
 *  Description:        Based on ECMA 2 Draft 7 February 1999
 
44
 *
 
45
 *  Author:             christine@netscape.com
 
46
 *  Date:               19 February 1999
 
47
 */
 
48
 
 
49
var SECTION = "String/replace-001.js";
 
50
var VERSION = "ECMA_2";
 
51
var TITLE   = "String.prototype.replace( regexp, replaceValue )";
 
52
 
 
53
startTest();
 
54
 
 
55
/*
 
56
 * If regexp is not an object of type RegExp, it is replaced with the
 
57
 * result of the expression new RegExp(regexp).  Let string denote the
 
58
 * result of converting the this value to a string.  String is searched
 
59
 * for the first occurrence of the regular expression pattern regexp if
 
60
 * regexp.global is false, or all occurrences if regexp.global is true.
 
61
 *
 
62
 * The match is performed as in String.prototype.match, including the
 
63
 * update of regexp.lastIndex.  Let m be the number of matched
 
64
 * parenthesized subexpressions as specified in section 15.7.5.3.
 
65
 *
 
66
 * If replaceValue is a function, then for each matched substring, call
 
67
 * the function with the following m + 3 arguments. Argument 1 is the
 
68
 * substring that matched. The next m arguments are all of the matched
 
69
 * subexpressions. Argument m + 2 is the length of the left context, and
 
70
 * argument m + 3 is string.
 
71
 *
 
72
 * The result is a string value derived from the original input by
 
73
 * replacing each matched substring with the corresponding return value
 
74
 * of the function call, converted to a string if need be.
 
75
 *
 
76
 * Otherwise, let newstring denote the result of converting replaceValue
 
77
 * to a string. The result is a string value derived from the original
 
78
 * input string by replacing each matched substring with a string derived
 
79
 * from newstring by replacing characters in newstring by replacement text
 
80
 * as specified in the following table:
 
81
 *
 
82
 * $& The matched substring.
 
83
 * $� The portion of string that precedes the matched substring.
 
84
 * $� The portion of string that follows the matched substring.
 
85
 * $+ The substring matched by the last parenthesized subexpressions in
 
86
 *      the regular expression.
 
87
 * $n The corresponding matched parenthesized subexpression n, where n
 
88
 * is a single digit 0-9. If there are fewer than n subexpressions, �$n
 
89
 * is left unchanged.
 
90
 *
 
91
 * Note that the replace function is intentionally generic; it does not
 
92
 * require that its this value be a string object. Therefore, it can be
 
93
 * transferred to other kinds of objects for use as a method.
 
94
 */
 
95
 
 
96
 
 
97
AddTestCase( "NO TESTS EXIST", "PASSED", "Test not implemented");
 
98
 
 
99
test();