tor-browser

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

S11.4.2_A2_T2.js (338B)


      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: Operator "void" uses GetValue
      6 es5id: 11.4.2_A2_T2
      7 description: If GetBase(x) is null, throw ReferenceError
      8 ---*/
      9 
     10 assert.throws(ReferenceError, function() {
     11  void x;
     12 });
     13 
     14 reportCompare(0, 0);