Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / language / module-code / instn-iee-bndng-cls_FIXTURE.js
blobbecf9a23cf21181166fd274a88b6074fee84f866
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.
5 export { A as B } from './instn-iee-bndng-cls.js';
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);
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);