-
Notifications
You must be signed in to change notification settings - Fork 312
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
matchAll() runs Request constructor off the main thread #672
Comments
This is also a problem for |
Is the same also true for pretty much every other method? In particular the ones that return |
Yeah could be. Depends on how things are worded/done. |
@jungkees could you perhaps give pointers to the sections in the specification that need review? That would help a lot. |
Ah.. I had to give this pointer: 3d0ee14#commitcomment-14237642. To sum, it'd be nice if you review whether this change makes sense:
I think |
It seems e.g., I would expect methods to do that kind of setup work first, before returning and running some steps in parallel for lookup. |
F2F: move the "if request is a string, upgrade to request" steps to before "run in parallel" |
That does not seem possible. You need to run the synchronous stuff at the start of the algorithm, before any parallel steps.
The text was updated successfully, but these errors were encountered: