tor-browser

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

S15.3.2.1_A3_T9.js (1305B)


      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 arguments p, body the following steps are taken:
      7    i) Let Result(i) be the first argument
      8    ii) Let P be ToString(Result(i))
      9    iii) Call ToString(body)
     10    iv) If P is not parsable as a FormalParameterList_opt then throw a SyntaxError exception
     11    v) If body is not parsable as FunctionBody then throw a SyntaxError exception
     12    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
     13    Pass in a scope chain consisting of the global object as the Scope parameter
     14    vii) Return Result(vi)
     15 es5id: 15.3.2.1_A3_T9
     16 description: >
     17    Values of the function constructor arguments are "1,1" and "return
     18    this;"
     19 ---*/
     20 
     21 var body = "return this;";
     22 var p = "1,1";
     23 
     24 try {
     25  var f = new Function(p, body);
     26  throw new Test262Error('#1: If P is not parsable as a FormalParameterList_opt then throw a SyntaxError exception');
     27 } catch (e) {
     28  assert(
     29    e instanceof SyntaxError,
     30    'The result of evaluating (e instanceof SyntaxError) is expected to be true'
     31  );
     32 }
     33 
     34 reportCompare(0, 0);