bee-browser / bee

An HTML5-compliant small browser engine for embedding
Apache License 2.0
1 stars 0 forks source link

feat(jsruntime): the global environment record #221

Open masnagam opened 1 week ago

masnagam commented 1 week ago

this is needed for supporting the following example:

<script>
  let b = () => console.log(a);
</script>
<script>
  let a = 1;
  b();
</script>