* Update component instance state.
(entity, nextState)
| 969 | */ |
| 970 | |
| 971 | function updateEntityState (entity, nextState) { |
| 972 | entity.pendingState = assign(entity.pendingState, nextState) |
| 973 | entity.dirty = true |
| 974 | invalidate() |
| 975 | } |
| 976 | |
| 977 | /** |
| 978 | * Commit props and state changes to an entity. |
no test coverage detected