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
If codeHere is export {}; async function ... or export async function ... the fileoverview comment transformer causes the fileoverview to be moved down below the goog.module etc in the emit.
But if instead it's async function ... or export function ... then it stays at the top!
It seems to be some interaction with the many weird things the fileoverview transformer does, along with maybe how export/async are downlevelled.
The text was updated successfully, but these errors were encountered:
I tinkered a bit with some of the fileoverview transformer functions (e.g. we have code in there that links to bugs that have since been fixed) but nothing jumped out at me.
Consider a file like:
If
codeHere
isexport {}; async function ...
orexport async function ...
the fileoverview comment transformer causes the fileoverview to be moved down below thegoog.module
etc in the emit.But if instead it's
async function ...
orexport function ...
then it stays at the top!It seems to be some interaction with the many weird things the fileoverview transformer does, along with maybe how export/async are downlevelled.
The text was updated successfully, but these errors were encountered: