tor-browser

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

empty-statement.js (246B)


      1 // Copyright 2019 Mike Pennisi.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 description: In the "if" statement empty statement is allowed.
      6 es5id: 12.5_A7
      7 ---*/
      8 
      9 if(1);
     10 
     11 reportCompare(0, 0);