]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/mozilla/ecma/FunctionObjects/15.3.2.1-3.js
1 /* The contents of this file are subject to the Netscape Public
2 * License Version 1.1 (the "License"); you may not use this file
3 * except in compliance with the License. You may obtain a copy of
4 * the License at http://www.mozilla.org/NPL/
6 * Software distributed under the License is distributed on an "AS
7 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
8 * implied. See the License for the specific language governing
9 * rights and limitations under the License.
11 * The Original Code is Mozilla Communicator client code, released March
14 * The Initial Developer of the Original Code is Netscape Communications
15 * Corporation. Portions created by Netscape are
16 * Copyright (C) 1998 Netscape Communications Corporation. All
23 File Name: 15.3.2.1-3.js
24 ECMA Section: 15.3.2.1 The Function Constructor
25 new Function(p1, p2, ..., pn, body )
27 Description: The last argument specifies the body (executable code)
28 of a function; any preceeding arguments sepcify formal
31 See the text for description of this section.
33 This test examples from the specification.
35 Author: christine@netscape.com
39 var SECTION
= "15.3.2.1-3";
40 var VERSION
= "ECMA_1";
42 var TITLE
= "The Function Constructor";
44 writeHeaderToLog( SECTION
+ " "+ TITLE
);
46 var testcases
= getTestCases();
49 function getTestCases() {
50 var array
= new Array();
55 for ( var i
= 0; i
< 2000; i
++ ) {
64 for ( var i
= 0; i
< 2000; i
++ ) {
71 MyFunc
= new Function( args
, "var r=0; for (var i = 0; i < MyFunc.length; i++ ) { if ( eval('arg'+i) == void 0) break; else r += eval('arg'+i); }; return r");
72 MyObject
= new Function( args
, "for (var i = 0; i < MyFunc.length; i++ ) { if ( eval('arg'+i) == void 0) break; eval('this.arg'+i +'=arg'+i); };");
74 array
[item
++] = new TestCase( SECTION
, "MyFunc.length", 2000, MyFunc
.length
);
75 array
[item
++] = new TestCase( SECTION
, "var MY_OB = eval('MyFunc(s)')", 1, eval("var MY_OB = MyFunc("+s
+"); MY_OB") );
77 array
[item
++] = new TestCase( SECTION
, "MyObject.length", 2000, MyObject
.length
);
79 array
[item
++] = new TestCase( SECTION
, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length") );
80 array
[item
++] = new TestCase( SECTION
, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1()", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1()") );
81 array
[item
++] = new TestCase( SECTION
, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1(1,2,3,4,5)", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1(1,2,3,4,5)") );
86 for ( tc
=0; tc
< testcases
.length
; tc
++ ) {
87 testcases
[tc
].passed
= writeTestCaseResult(
90 testcases
[tc
].description
+" = "+ testcases
[tc
].actual
);
92 testcases
[tc
].reason
+= ( testcases
[tc
].passed
) ? "" : "wrong value ";