Skip to content
Snippets Groups Projects
Unverified Commit b078c810 authored by Sebastian Markbåge's avatar Sebastian Markbåge Committed by GitHub
Browse files

[Fiber] Replace setCurrentDebugFiberInDEV with runWithFiberInDEV (#29221)

Stacked on #29044.

To work with `console.createTask(...).run(...)` we need to be able to
run a function in the scope of the task.

The main concern with this, other than general performance, is that it
might add more stack frames on very deep stacks that hit the stack
limit. Such as with the commit phase where we recursively go down the
tree. These callbacks aren't really necessary in the recursive part but
only in the shallow invocation of the commit phase for each tag. So we
could refactor the commit phase so that only the shallow part at each
level is covered this way.
parent d6cfa0f2
Branches gh/josephsavona/16/base
Tags
No related merge requests found
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment