Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scripts in browser don't wait for async script to finish #190

Closed
jcubic opened this issue Oct 31, 2021 · 0 comments
Closed

Scripts in browser don't wait for async script to finish #190

jcubic opened this issue Oct 31, 2021 · 0 comments
Labels
bug Something isn't working

Comments

@jcubic
Copy link
Collaborator

jcubic commented Oct 31, 2021

When scripts are executed and don't wait for the previous script to finish.
This is a problem when bootstrapping, the second script doesn't have a standard library because the bootstrap script runs async.

example:

<script type="text/x-scheme" bootstrap>
    (console.log "1")
</script>
<script type="text/x-scheme">
    (console.log "2")
    (--> console (log "3"))
</script>

the output:

2
--> is not defined
1
@jcubic jcubic added the bug Something isn't working label Oct 31, 2021
@jcubic jcubic closed this as completed Oct 31, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant