js/src/tests/ecma/FunctionObjects/15.3.1.1-2.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.1.1-2.js
michael@0 9 ECMA Section: 15.3.1.1 The Function Constructor Called as a Function
michael@0 10 Function(p1, p2, ..., pn, body )
michael@0 11
michael@0 12 Description:
michael@0 13 When the Function function is called with some arguments p1, p2, . . . , pn,
michael@0 14 body (where n might be 0, that is, there are no "p" arguments, and where body
michael@0 15 might also not be provided), the following steps are taken:
michael@0 16
michael@0 17 1. Create and return a new Function object exactly if the function constructor
michael@0 18 had been called with the same arguments (15.3.2.1).
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.1.1-2";
michael@0 25 var VERSION = "ECMA_1";
michael@0 26 startTest();
michael@0 27 var TITLE = "The Function Constructor Called as a Function";
michael@0 28
michael@0 29 writeHeaderToLog( SECTION + " "+ TITLE);
michael@0 30
michael@0 31 var myfunc1 = Function("a","b","c", "return a+b+c" );
michael@0 32 var myfunc2 = Function("a, b, c", "return a+b+c" );
michael@0 33 var myfunc3 = Function("a,b", "c", "return a+b+c" );
michael@0 34
michael@0 35 myfunc1.toString = Object.prototype.toString;
michael@0 36 myfunc2.toString = Object.prototype.toString;
michael@0 37 myfunc3.toString = Object.prototype.toString;
michael@0 38
michael@0 39 new TestCase( SECTION,
michael@0 40 "myfunc1 = Function('a','b','c'); myfunc.toString = Object.prototype.toString; myfunc.toString()",
michael@0 41 "[object Function]",
michael@0 42 myfunc1.toString() );
michael@0 43
michael@0 44 new TestCase( SECTION,
michael@0 45 "myfunc1.length",
michael@0 46 3,
michael@0 47 myfunc1.length );
michael@0 48
michael@0 49 new TestCase( SECTION,
michael@0 50 "myfunc1.prototype.toString()",
michael@0 51 "[object Object]",
michael@0 52 myfunc1.prototype.toString() );
michael@0 53
michael@0 54 new TestCase( SECTION,
michael@0 55 "myfunc1.prototype.constructor",
michael@0 56 myfunc1,
michael@0 57 myfunc1.prototype.constructor );
michael@0 58
michael@0 59 new TestCase( SECTION,
michael@0 60 "myfunc1.arguments",
michael@0 61 null,
michael@0 62 myfunc1.arguments );
michael@0 63
michael@0 64 new TestCase( SECTION,
michael@0 65 "myfunc1(1,2,3)",
michael@0 66 6,
michael@0 67 myfunc1(1,2,3) );
michael@0 68
michael@0 69 new TestCase( SECTION,
michael@0 70 "var MYPROPS = ''; for ( var p in myfunc1.prototype ) { MYPROPS += p; }; MYPROPS",
michael@0 71 "",
michael@0 72 eval("var MYPROPS = ''; for ( var p in myfunc1.prototype ) { MYPROPS += p; }; MYPROPS") );
michael@0 73
michael@0 74 new TestCase( SECTION,
michael@0 75 "myfunc2 = Function('a','b','c'); myfunc.toString = Object.prototype.toString; myfunc.toString()",
michael@0 76 "[object Function]",
michael@0 77 myfunc2.toString() );
michael@0 78
michael@0 79 new TestCase( SECTION,
michael@0 80 "myfunc2.length",
michael@0 81 3,
michael@0 82 myfunc2.length );
michael@0 83
michael@0 84 new TestCase( SECTION,
michael@0 85 "myfunc2.prototype.toString()",
michael@0 86 "[object Object]",
michael@0 87 myfunc2.prototype.toString() );
michael@0 88
michael@0 89 new TestCase( SECTION,
michael@0 90 "myfunc2.prototype.constructor",
michael@0 91 myfunc2,
michael@0 92 myfunc2.prototype.constructor );
michael@0 93
michael@0 94 new TestCase( SECTION,
michael@0 95 "myfunc2.arguments",
michael@0 96 null,
michael@0 97 myfunc2.arguments );
michael@0 98
michael@0 99 new TestCase( SECTION,
michael@0 100 "myfunc2( 1000, 200, 30 )",
michael@0 101 1230,
michael@0 102 myfunc2(1000,200,30) );
michael@0 103
michael@0 104 new TestCase( SECTION,
michael@0 105 "var MYPROPS = ''; for ( var p in myfunc2.prototype ) { MYPROPS += p; }; MYPROPS",
michael@0 106 "",
michael@0 107 eval("var MYPROPS = ''; for ( var p in myfunc2.prototype ) { MYPROPS += p; }; MYPROPS") );
michael@0 108
michael@0 109 new TestCase( SECTION,
michael@0 110 "myfunc3 = Function('a','b','c'); myfunc.toString = Object.prototype.toString; myfunc.toString()",
michael@0 111 "[object Function]",
michael@0 112 myfunc3.toString() );
michael@0 113
michael@0 114 new TestCase( SECTION,
michael@0 115 "myfunc3.length",
michael@0 116 3,
michael@0 117 myfunc3.length );
michael@0 118
michael@0 119 new TestCase( SECTION,
michael@0 120 "myfunc3.prototype.toString()",
michael@0 121 "[object Object]",
michael@0 122 myfunc3.prototype.toString() );
michael@0 123
michael@0 124 new TestCase( SECTION,
michael@0 125 "myfunc3.prototype.valueOf() +''",
michael@0 126 "[object Object]",
michael@0 127 myfunc3.prototype.valueOf() +'' );
michael@0 128
michael@0 129 new TestCase( SECTION,
michael@0 130 "myfunc3.prototype.constructor",
michael@0 131 myfunc3,
michael@0 132 myfunc3.prototype.constructor );
michael@0 133
michael@0 134 new TestCase( SECTION,
michael@0 135 "myfunc3.arguments",
michael@0 136 null,
michael@0 137 myfunc3.arguments );
michael@0 138
michael@0 139 new TestCase( SECTION,
michael@0 140 "myfunc3(-100,100,NaN)",
michael@0 141 Number.NaN,
michael@0 142 myfunc3(-100,100,NaN) );
michael@0 143
michael@0 144 new TestCase( SECTION,
michael@0 145 "var MYPROPS = ''; for ( var p in myfunc3.prototype ) { MYPROPS += p; }; MYPROPS",
michael@0 146 "",
michael@0 147 eval("var MYPROPS = ''; for ( var p in myfunc3.prototype ) { MYPROPS += p; }; MYPROPS") );
michael@0 148
michael@0 149 test();

mercurial