tor-browser

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

no-line-separator.js (382B)


      1 // Copyright (C) 2019 Leo Balter. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: pending
      6 description: >
      7    Hashbang comments should not require a newline afterwards
      8 info: |
      9    HashbangComment::
     10      #! SingleLineCommentChars[opt]
     11 features: [hashbang]
     12 ---*/
     13 
     14 assert.sameValue(eval('#!'), undefined);
     15 
     16 reportCompare(0, 0);