You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
remove the noAwait code that supports the lack of the await at module top level.
or kick the can down the road another few years.
Quite to my surprise, I came up with a way to work around this limitation while maintaining external template files and not totally butchering the code. The main consequence for users is that if they need to access the layout of the element during page load, they need to wait for BaseElement.promises[element].
The workaround doesn't use async or await, so it's widely compatible. Still, it's more code and it's a bit convoluted, so removing it is a good plan. The template files are tiny, so fetching them synchronously is not much of a bottleneck.
Unfortunately, this is a compiler issue, not a run-time issue, and this try/catch block throws an uncatchable exception (using input-num as an example):
This issue is a reminder for 2029 to either:
noAwait
code that supports the lack of theawait
at module top level.Quite to my surprise, I came up with a way to work around this limitation while maintaining external template files and not totally butchering the code. The main consequence for users is that if they need to access the layout of the element during page load, they need to wait for
BaseElement.promises[element]
.The workaround doesn't use
async
orawait
, so it's widely compatible. Still, it's more code and it's a bit convoluted, so removing it is a good plan. The template files are tiny, so fetching them synchronously is not much of a bottleneck.Unfortunately, this is a compiler issue, not a run-time issue, and this try/catch block throws an uncatchable exception (using
input-num
as an example):So the await code has to disappear completely in order to work on iOS/Safari 14, for example. Instead the code now looks like this:
The 2029 replacement is:
Where
noAwait
is never declared.The text was updated successfully, but these errors were encountered: