tor-browser

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

S25.4.4.4_A3.1_T1.js (375B)


      1 // Copyright 2014 Cubane Canada, Inc.  All rights reserved.
      2 // See LICENSE for details.
      3 
      4 /*---
      5 info: |
      6   Promise.reject
      7 es6id: S25.4.4.4_A3.1_T1
      8 author: Sam Mikes
      9 description: Promise.reject throws TypeError for bad 'this'
     10 ---*/
     11 
     12 function ZeroArgConstructor() {}
     13 
     14 assert.throws(TypeError, function() {
     15  Promise.reject.call(ZeroArgConstructor, 4);
     16 });
     17 
     18 reportCompare(0, 0);