2011-09-07 08:35:18 +02:00
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
2014-07-22 01:09:02 +02:00
/ * - - -
2018-01-05 18:26:51 +01:00
info : |
2014-07-22 01:09:02 +02:00
When the Function constructor is called with arguments p , body the following steps are taken :
i ) Let Result ( i ) be the first argument
ii ) Let P be ToString ( Result ( i ) )
iii ) Call ToString ( body )
iv ) If P is not parsable as a FormalParameterList _opt then throw a SyntaxError exception
v ) If body is not parsable as FunctionBody then throw a SyntaxError exception
vi ) Create a new Function object as specified in 13.2 with parameters specified by parsing P as a FormalParameterListopt and body specified by parsing body as a FunctionBody
Pass in a scope chain consisting of the global object as the Scope parameter
vii ) Return Result ( vi )
2014-07-25 00:41:42 +02:00
es5id : 15.3 . 2.1 _A3 _T5
2014-07-22 01:09:02 +02:00
description : >
Values of the function constructor arguments are "void 0" and
"return \"A\";"
-- - * /
2011-09-07 08:35:18 +02:00
var body = "return \"A\";" ;
//CHECK#1
try {
2018-02-15 21:49:19 +01:00
var f = new Function ( void 0 , body ) ;
2011-09-07 08:35:18 +02:00
} catch ( e ) {
2018-02-15 21:49:19 +01:00
$ERROR ( '#1: test failed with error ' + e ) ;
2011-09-07 08:35:18 +02:00
}
//CHECK#2
if ( f . constructor !== Function ) {
$ERROR ( '#2: When the Function constructor is called with one argument then body be that argument and creates a new Function object as specified in 13.2' ) ;
}
//CHECK#3
2018-02-15 21:49:19 +01:00
if ( f ( ) !== '\u0041' ) {
2011-09-07 08:35:18 +02:00
$ERROR ( '#3: When the Function constructor is called with one argument then body be that argument the following steps are taken...' ) ;
}