Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Flight] Encode the name of a function as an object property (faceboo…
…k#30325) Unfortunately, Firefox doesn't include the name of a function in stack traces if you set it as either `.name` or `.displayName` at runtime. Only if you include it declarative. We also can't include it into a named function expression because not all possible names are expressible declaratively. E.g. spaces or punctuations. However, we can express any name if it's an object property and since object properties now give their name declarative to the function defined inside of them, we can declaratively express any name this way.
- Loading branch information