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, ComponentPack has a struct Deps which holds a set of dependencies which determines startup order and which components have to be constructed when a component is added to the runtime. We need two different sets of dependencies: ones that matter for startup, i.e., the component can't be initialized correctly until after other components are initialization; and, ones that are use dependencies which don't matter for startup ordering but should be added to the runtime component set if a component is added since they might use them in the component code.
The text was updated successfully, but these errors were encountered:
What Needs to be Done?
Right now,
ComponentPack
has a structDeps
which holds a set of dependencies which determines startup order and which components have to be constructed when a component is added to the runtime. We need two different sets of dependencies: ones that matter for startup, i.e., the component can't be initialized correctly until after other components are initialization; and, ones that are use dependencies which don't matter for startup ordering but should be added to the runtime component set if a component is added since they might use them in the component code.The text was updated successfully, but these errors were encountered: