tor-browser

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

cptn-nrml-empty-empty.js (403B)


      1 // Copyright (C) 2016 the V8 project authors. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 /*---
      4 info: |
      5    If Result(3).type is normal and its completion value is empty,
      6    then return the value undefined
      7 esid: sec-performeval
      8 es5id: 15.1.2.1_A3.2_T3
      9 description: Empty statement
     10 ---*/
     11 
     12 assert.sameValue((0,eval)(";"), undefined);
     13 
     14 reportCompare(0, 0);