tor-browser

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

S7.9.2_A1_T2.js (397B)


      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: Check examples for automatic semicolon insertion from the standard
      6 es5id: 7.9.2_A1_T2
      7 description: >
      8    { 1 \n 2 } 3 is a valid sentence in the ECMAScript grammar with
      9    automatic semicolon insertion
     10 ---*/
     11 
     12 //CHECK#1
     13 { 1
     14 2 } 3
     15 
     16 reportCompare(0, 0);