(
instance: Instance,
_updatePayload: any,
_type: string,
_oldProps: Props,
newProps: Props
)
| 174 | commitUpdate( |
| 175 | instance: Instance, |
| 176 | _type: Type, |
| 177 | _oldProps: Props, |
| 178 | newProps: Props, |
| 179 | _internalHandle: any, |
| 180 | ): void { |
| 181 | log.debug("commitUpdate"); |
| 182 | // react-reconciler 0.33 removed prepareUpdate, so commitUpdate receives |
| 183 | // the old and new props directly instead of an update payload |
| 184 | return instance.commitUpdate(newProps); |
| 185 | }, |
| 186 | |
| 187 | commitMount(instance: Instance, _type: Type, _newProps: Props): void { |
| 188 | log.debug("commitMount"); |
nothing calls this directly
no test coverage detected