| // Copyright (C) 2016 the V8 project authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| esid: sec-module-namespace-exotic-objects-get-p-receiver |
| Behavior of the [[Get]] internal method with a string argument for exported |
| 12. Let targetEnvRec be targetEnv's EnvironmentRecord. |
| 13. Return ? targetEnvRec.GetBindingValue(binding.[[BindingName]], true). |
| import * as ns from './get-str-found-uninit.js'; |
| assert.throws(ReferenceError, function() { |
| assert.throws(ReferenceError, function() { |
| assert.throws(ReferenceError, function() { |
| assert.throws(ReferenceError, function() { |
| export { local2 as renamed }; |
| export { local1 as indirect } from './get-str-found-uninit.js'; |