instn-iee-bndng-cls_FIXTURE.js (650B)
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 export { A as B } from './instn-iee-bndng-cls.js'; 6 7 // Taken together, the following two assertions demonstrate that there is no 8 // entry in the environment record for ImportName: 9 export const results = []; 10 try { 11 A; 12 } catch (error) { 13 results.push(error.name, typeof A); 14 } 15 16 // Taken together, the following two assertions demonstrate that there is no 17 // entry in the environment record for ExportName: 18 try { 19 B; 20 } catch (error) { 21 results.push(error.name, typeof B); 22 }