* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / Microsoft.JScript / Test / Mozilla / ecma / FunctionObjects / 15.3.5-2.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    File Name:          15.3.5-1.js
41    ECMA Section:       15.3.5 Properties of Function Instances
42    new Function(p1, p2, ..., pn, body )
43
44    Description:
45
46    15.3.5.1 length
47
48    The value of the length property is usually an integer that indicates
49    the "typical" number of arguments expected by the function. However,
50    the language permits the function to be invoked with some other number
51    of arguments. The behavior of a function when invoked on a number of
52    arguments other than the number specified by its length property depends
53    on the function.
54
55    15.3.5.2 prototype
56    The value of the prototype property is used to initialize the internal [[
57    Prototype]] property of a newly created object before the Function object
58    is invoked as a constructor for that newly created object.
59
60    15.3.5.3 arguments
61
62    The value of the arguments property is normally null if there is no
63    outstanding invocation of the function in progress (that is, the function has been called
64    but has not yet returned). When a non-internal Function object (15.3.2.1) is invoked, its
65    arguments property is "dynamically bound" to a newly created object that contains the
66    arguments on which it was invoked (see 10.1.6 and 10.1.8). Note that the use of this
67    property is discouraged; it is provided principally for compatibility with existing old code.
68
69    Author:             christine@netscape.com
70    Date:               28 october 1997
71
72 */
73
74 var SECTION = "15.3.5-2";
75 var VERSION = "ECMA_1";
76 startTest();
77 var TITLE   = "Properties of Function Instances";
78
79 writeHeaderToLog( SECTION + " "+TITLE);
80
81 var MyObject = new Function( 'a', 'b', 'c', 'this.a = a; this.b = b; this.c = c; this.value = a+b+c; this.valueOf = new Function( "return this.value" )' );
82
83 new TestCase( SECTION, "MyObject.length",                       3,          MyObject.length );
84 new TestCase( SECTION, "typeof MyObject.prototype",             "object",   typeof MyObject.prototype );
85 new TestCase( SECTION, "typeof MyObject.prototype.constructor", "function", typeof MyObject.prototype.constructor );
86 new TestCase( SECTION, "MyObject.arguments",                     null,       MyObject.arguments );
87
88 test();