this is needed for supporting the following example: ```html <script> let b = () => console.log(a); </script> <script> let a = 1; b(); </script> ```
this is needed for supporting the following example: