|
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 |
|
7 /** |
|
8 File Name: 15.3.5.3.js |
|
9 ECMA Section: Function.arguments |
|
10 Description: |
|
11 |
|
12 The value of the arguments property is normally null if there is no |
|
13 outstanding invocation of the function in progress (that is, the |
|
14 function has been called but has not yet returned). When a non-internal |
|
15 Function object (15.3.2.1) is invoked, its arguments property is |
|
16 "dynamically bound" to a newly created object that contains the arguments |
|
17 on which it was invoked (see 10.1.6 and 10.1.8). Note that the use of this |
|
18 property is discouraged; it is provided principally for compatibility |
|
19 with existing old code. |
|
20 |
|
21 See sections 10.1.6 and 10.1.8 for more extensive tests. |
|
22 |
|
23 Author: christine@netscape.com |
|
24 Date: 12 november 1997 |
|
25 */ |
|
26 |
|
27 var SECTION = "15.3.5.3"; |
|
28 var VERSION = "ECMA_1"; |
|
29 startTest(); |
|
30 var TITLE = "Function.arguments"; |
|
31 |
|
32 writeHeaderToLog( SECTION + " "+ TITLE); |
|
33 |
|
34 var MYFUNCTION = new Function( "return this.arguments" ); |
|
35 |
|
36 new TestCase( SECTION, "var MYFUNCTION = new Function( 'return this.arguments' ); MYFUNCTION.arguments", null, MYFUNCTION.arguments ); |
|
37 |
|
38 test(); |