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
Right now, when we detect a state change, we re-run the entire component tree. This is overkill - we can know which component the state changed in, and re-run only that component and its descendants.
This should result in some speedup because we'll be running less code overall, especially potentially-expensive things in components that we know didn't change at all.
We'll need some way to mark the dirty shadow node, and then to propagate that dirtiness to its children.
The text was updated successfully, but these errors were encountered:
Right now, when we detect a state change, we re-run the entire component tree. This is overkill - we can know which component the state changed in, and re-run only that component and its descendants.
The text was updated successfully, but these errors were encountered: