On 1 October 2014 20:32, Jason Orendorff <[email protected]> wrote: > I think there is a way that the error could occur at runtime even in > all-strict-mode code: when a new const is added at toplevel in a > second script. > > <script> > "use strict"; > function f(value) { x = value; } > </script>
That's an early ReferenceError right there, AFAICT, regardless of what follows in a later script. /Andreas > <script> > "use strict"; > const x = 0; > f(1); > </script> > > -j _______________________________________________ es-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es-discuss

