eval-gtbndng-local-bndng-const.js (712B)
1 // |reftest| module 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 description: References to local `const` bindings resolve successfully 6 esid: sec-moduleevaluation 7 info: | 8 8.1.1.5.1 GetBindingValue (N, S) 9 10 [...] 11 3. If the binding for N is an indirect binding, then 12 [...] 13 5. Return the value currently bound to N in envRec. 14 15 13.3.1.4 Runtime Semantics: Evaluation 16 17 LexicalBinding : BindingIdentifier Initializer 18 19 [...] 20 6. Return InitializeReferencedBinding(lhs, value). 21 flags: [module] 22 ---*/ 23 24 const constBinding = 89; 25 assert.sameValue(constBinding, 89); 26 27 reportCompare(0, 0);