letconst_global.baseline 345 B

12345678910111213141516171819202122232425
  1. ==== Basic let and const variables at global scope ====
  2. Naked references
  3. global var a
  4. global undecl b
  5. global let c
  6. global const d
  7. function e() { }
  8. this. references
  9. global var a
  10. global undecl b
  11. undefined
  12. undefined
  13. function e() { }
  14. for-in enumeration of this
  15. e: function e() { }
  16. a: global var a
  17. b: global undecl b