Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fiber] Call life-cycles with a react-stack-bottom-frame stack frame (f…
…acebook#30429) Stacked on facebook#30427. Most hooks and such are called inside renders which already have these on the stack but life-cycles that call out on them are useful to cut off too. Typically we don't create JSX in here so they wouldn't be part of owner stacks anyway but they can be apart of plain stacks such as the ones prefixes to console logs or printed by error dialogs. This lets us cut off any React internals below. This should really be possible using just ignore listing too ideally. At this point we should maybe just build a Babel plugin that lets us annotate a function to need to have this name.
- Loading branch information