tor-browser

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

S15.2.1.1_A2_T11.js (882B)


      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 Object function is called with one argument value,
      7    and the value neither is null nor undefined, and is supplied, return ToObject(value)
      8 es5id: 15.2.1.1_A2_T11
      9 description: Calling Object function with function declaration as argument value
     10 ---*/
     11 assert.sameValue(typeof func, 'undefined', 'The value of `typeof func` is expected to be "undefined"');
     12 
     13 var n_obj = Object(function func() {
     14  return 1;
     15 });
     16 
     17 assert.sameValue(
     18  n_obj.constructor,
     19  Function,
     20  'The value of n_obj.constructor is expected to equal the value of Function'
     21 );
     22 assert.sameValue(n_obj(), 1, 'n_obj() must return 1')
     23 assert.sameValue(typeof func, 'undefined', 'The value of `typeof func` is expected to be "undefined"');
     24 
     25 
     26 reportCompare(0, 0);