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
Babel's regenerator implementation has a bug around nested arrow functions. So we added the arrow function transform to Babel so that the regenerator wouldn't encounter nested arrow functions. Once this PR lands, that bug will be fixed in Babel, so we can remove the redundant arrow transform.
We also added the class transform because async functions don't support super via babel: babel/babel#3930
The text was updated successfully, but these errors were encountered:
Also, the class transform mentioned above has already been removed from denali-babel. The mentioned bug has not been fixed, but Babel's ES5 transpiled classes can't interop with native ES6 classes, so it's a shortcoming Babel users will have to deal with.
Babel's regenerator implementation has a bug around nested arrow functions. So we added the arrow function transform to Babel so that the regenerator wouldn't encounter nested arrow functions. Once this PR lands, that bug will be fixed in Babel, so we can remove the redundant arrow transform.
We also added the class transform because async functions don't support super via babel: babel/babel#3930
The text was updated successfully, but these errors were encountered: