tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

S15.3.2.1_A1_T1.js (1231B)


      1 // Copyright 2009 the Sputnik authors.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 info: |
      6    When the Function constructor is called with one argument then body be that argument and the following steps are taken:
      7    i) Call ToString(body)
      8    ii) If P is not parsable as a FormalParameterListopt then throw a SyntaxError exception
      9    iii) If body is not parsable as FunctionBody then throw a SyntaxError exception
     10    iv) 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.
     11    Pass in a scope chain consisting of the global object as the Scope parameter
     12    v) Return Result(iv)
     13 es5id: 15.3.2.1_A1_T1
     14 description: "The body of the function is \"{toString:function(){throw 7;}}\""
     15 ---*/
     16 
     17 var body = {
     18  toString: function() {
     19    throw 7;
     20  }
     21 }
     22 
     23 try {
     24  var f = new Function(body);
     25  throw new Test262Error('#1: When the Function constructor is called with one argument then body be that argument the following step are taken: call ToString(body)');
     26 } catch (e) {
     27  assert.sameValue(e, 7, 'The value of e is expected to be 7');
     28 }
     29 
     30 reportCompare(0, 0);