blob: 8e06c457dd9ad73586075e3db37ab5b0bda84866 [file] [log] [blame]
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
export { g as g2 } from './instn-iee-bndng-gen.js';
// Taken together, the following two assertions demonstrate that there is no
// entry in the environment record for ImportName:
assert.throws(ReferenceError, function() {
g;
});
assert.sameValue(typeof g, 'undefined');
// Taken together, the following two assertions demonstrate that there is no
// entry in the environment record for ExportName:
assert.throws(ReferenceError, function() {
g2;
});
assert.sameValue(typeof g2, 'undefined');