js/src/tests/ecma/FunctionObjects/15.3.2.1-3.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6
michael@0 7 /**
michael@0 8 File Name: 15.3.2.1-3.js
michael@0 9 ECMA Section: 15.3.2.1 The Function Constructor
michael@0 10 new Function(p1, p2, ..., pn, body )
michael@0 11
michael@0 12 Description: The last argument specifies the body (executable code)
michael@0 13 of a function; any preceding arguments sepcify formal
michael@0 14 parameters.
michael@0 15
michael@0 16 See the text for description of this section.
michael@0 17
michael@0 18 This test examples from the specification.
michael@0 19
michael@0 20 Author: christine@netscape.com
michael@0 21 Date: 28 october 1997
michael@0 22
michael@0 23 */
michael@0 24 var SECTION = "15.3.2.1-3";
michael@0 25 var VERSION = "ECMA_1";
michael@0 26 startTest();
michael@0 27 var TITLE = "The Function Constructor";
michael@0 28
michael@0 29 writeHeaderToLog( SECTION + " "+ TITLE);
michael@0 30
michael@0 31 var args = "";
michael@0 32
michael@0 33 for ( var i = 0; i < 2000; i++ ) {
michael@0 34 args += "arg"+i;
michael@0 35 if ( i != 1999 ) {
michael@0 36 args += ",";
michael@0 37 }
michael@0 38 }
michael@0 39
michael@0 40 var s = "";
michael@0 41
michael@0 42 for ( var i = 0; i < 2000; i++ ) {
michael@0 43 s += ".0005";
michael@0 44 if ( i != 1999 ) {
michael@0 45 s += ",";
michael@0 46 }
michael@0 47 }
michael@0 48
michael@0 49 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");
michael@0 50 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); };");
michael@0 51
michael@0 52 new TestCase( SECTION, "MyFunc.length", 2000, MyFunc.length );
michael@0 53 new TestCase( SECTION, "var MY_OB = eval('MyFunc(s)')", 1, eval("var MY_OB = MyFunc("+s+"); MY_OB") );
michael@0 54
michael@0 55 new TestCase( SECTION, "MyObject.length", 2000, MyObject.length );
michael@0 56
michael@0 57 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") );
michael@0 58 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()") );
michael@0 59 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)") );
michael@0 60
michael@0 61 test();

mercurial