module-code_FIXTURE.js (422B)
1 // |reftest| skip -- not a test file 2 // Copyright (C) 2018 Leo Balter. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 // exports: default === 42, local1 === 'Test262', renamed === 'TC39', indirect === 'Test262' 6 7 export var local1 = 'Test262'; 8 var local2 = 'TC39'; 9 export { local2 as renamed }; 10 export { local1 as indirect } from './module-code_FIXTURE.js'; 11 export default 42;