Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / ecma / extensions / 11.6.1-3.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 Mozilla Communicator client code, released
16  * March 31, 1998.
17  *
18  * The Initial Developer of the Original Code is
19  * Netscape Communications Corporation.
20  * Portions created by the Initial Developer are Copyright (C) 1998
21  * the Initial Developer. All Rights Reserved.
22  *
23  * Contributor(s):
24  *
25  * Alternatively, the contents of this file may be used under the terms of
26  * either the GNU General Public License Version 2 or later (the "GPL"), or
27  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28  * in which case the provisions of the GPL or the LGPL are applicable instead
29  * of those above. If you wish to allow use of your version of this file only
30  * under the terms of either the GPL or the LGPL, and not to allow others to
31  * use your version of this file under the terms of the MPL, indicate your
32  * decision by deleting the provisions above and replace them with the notice
33  * and other provisions required by the GPL or the LGPL. If you do not delete
34  * the provisions above, a recipient may use your version of this file under
35  * the terms of any one of the MPL, the GPL or the LGPL.
36  *
37  * ***** END LICENSE BLOCK ***** */
38
39
40 /**
41    File Name:          11.6.1-3.js
42    ECMA Section:       11.6.1 The addition operator ( + )
43    Description:
44
45    The addition operator either performs string concatenation or numeric
46    addition.
47
48    The production AdditiveExpression : AdditiveExpression + MultiplicativeExpression
49    is evaluated as follows:
50
51    1.  Evaluate AdditiveExpression.
52    2.  Call GetValue(Result(1)).
53    3.  Evaluate MultiplicativeExpression.
54    4.  Call GetValue(Result(3)).
55    5.  Call ToPrimitive(Result(2)).
56    6.  Call ToPrimitive(Result(4)).
57    7.  If Type(Result(5)) is String or Type(Result(6)) is String, go to step 12.
58    (Note that this step differs from step 3 in the algorithm for comparison
59    for the relational operators in using or instead of and.)
60    8.  Call ToNumber(Result(5)).
61    9.  Call ToNumber(Result(6)).
62    10. Apply the addition operation to Result(8) and Result(9). See the discussion below (11.6.3).
63    11. Return Result(10).
64    12. Call ToString(Result(5)).
65    13. Call ToString(Result(6)).
66    14. Concatenate Result(12) followed by Result(13).
67    15. Return Result(14).
68
69    Note that no hint is provided in the calls to ToPrimitive in steps 5 and 6.
70    All native ECMAScript objects except Date objects handle the absence of a
71    hint as if the hint Number were given; Date objects handle the absence of a
72    hint as if the hint String were given. Host objects may handle the absence
73    of a hint in some other manner.
74
75    This test does only covers cases where the Additive or Mulplicative expression
76    is a Date.
77
78    Author:             christine@netscape.com
79    Date:               12 november 1997
80 */
81 var SECTION = "11.6.1-3";
82 var VERSION = "ECMA_1";
83 startTest();
84
85 writeHeaderToLog( SECTION + " The Addition operator ( + )");
86
87 // tests for a boolean primitive and a boolean object, and
88 // "MyValuelessObject", where the value is set in the object's
89 // prototype, not the object itself.
90
91 var DATE1 = new Date();
92
93 var MYOB1 = new MyObject( DATE1 );
94 var MYOB2 = new MyValuelessObject( DATE1 );
95 var MYOB3 = new MyProtolessObject( DATE1 );
96 var MYOB4 = new MyProtoValuelessObject( DATE1 );
97
98 new TestCase(   SECTION,
99                 "MYOB2 = new MyValuelessObject(DATE1); MYOB3 + 'string'",
100                 DATE1.toString() + "string",
101                 MYOB2 + 'string' );
102
103 new TestCase(   SECTION,
104                 "MYOB2 = new MyValuelessObject(DATE1); MYOB3 + new String('string')",
105                 DATE1.toString() + "string",
106                 MYOB2 + new String('string') );
107 /*
108   new TestCase(   SECTION,
109   "MYOB3 = new MyProtolessObject(DATE1); MYOB3 + new Boolean(true)",
110   DATE1.toString() + "true",
111   MYOB3 + new Boolean(true) );
112 */
113
114 test();
115
116 function MyProtoValuelessObject() {
117   this.valueOf = new Function ( "" );
118   this.__proto__ = null;
119 }
120 function MyProtolessObject( value ) {
121   this.valueOf = new Function( "return this.value" );
122   this.__proto__ = null;
123   this.value = value;
124 }
125 function MyValuelessObject(value) {
126   this.__proto__ = new MyPrototypeObject(value);
127 }
128 function MyPrototypeObject(value) {
129   this.valueOf = new Function( "return this.value;" );
130   this.toString = new Function( "return (this.value + '');" );
131   this.value = value;
132 }
133 function MyObject( value ) {
134   this.valueOf = new Function( "return this.value" );
135   this.value = value;
136 }