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
When using async functions in the pre or post JS and combining that with -s MAXIMUM_MEMORY=4GB the acorn-optimizer.js trips over the async function during parsing. Looks like acorn could use an update :-)
The text was updated successfully, but these errors were encountered:
We set the version to 6 (2015) when we added Acorn, probably to
keep it as close as possible to the old pre-Acorn parser. But the
default in our version is 9 (2018) so we may as well switch to that,
and that fixes#11431 (8 - 2017 - would have been enough for
that specific bug).
When using
async function
s in the pre or post JS and combining that with-s MAXIMUM_MEMORY=4GB
theacorn-optimizer.js
trips over theasync function
during parsing. Looks like acorn could use an update :-)The text was updated successfully, but these errors were encountered: