tor-browser

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

constructor.js (324B)


      1 // Copyright (C) 2015 André Bargull. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 es6id: 19.5.6.1
      6 description: >
      7  SyntaxError is a constructor function.
      8 ---*/
      9 
     10 assert.sameValue(typeof SyntaxError, 'function', 'typeof SyntaxError is "function"');
     11 
     12 reportCompare(0, 0);