instn-uniq-env-rec-other_FIXTURE.js (393B)
1 // |reftest| skip -- not a test file 2 // Copyright (C) 2016 the V8 project authors. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 var first = 4; 6 let second = 5; 7 const third = 6; 8 class fourth {} 9 function fifth() {} 10 function* sixth() {} 11 12 var seventh = 7; 13 let eighth = 8; 14 const ninth = 9; 15 class tenth {} 16 function eleventh() {} 17 function *twelfth() {}