@@ -176,22 +176,19 @@ class _LifecycleTest extends react.Component with LifecycleTestHelper {
176
176
componentWillUnmount () => lifecycleCall ('componentWillUnmount' );
177
177
178
178
@override
179
- componentWillReceiveProps (newProps) =>
180
- lifecycleCall ('componentWillReceiveProps' , arguments: [Map .from (newProps)]);
179
+ componentWillReceiveProps (newProps) => lifecycleCall ('componentWillReceiveProps' , arguments: [Map .from (newProps)]);
181
180
182
181
@override
183
- componentWillReceivePropsWithContext (newProps, newContext) =>
184
- lifecycleCall ('componentWillReceivePropsWithContext' ,
185
- arguments: [Map .from (newProps), Map .from (newContext as Map )]);
182
+ componentWillReceivePropsWithContext (newProps, newContext) => lifecycleCall ('componentWillReceivePropsWithContext' ,
183
+ arguments: [Map .from (newProps), Map .from (newContext as Map )]);
186
184
187
185
@override
188
186
componentWillUpdate (nextProps, nextState) =>
189
187
lifecycleCall ('componentWillUpdate' , arguments: [Map .from (nextProps), Map .from (nextState)]);
190
188
191
189
@override
192
- componentWillUpdateWithContext (nextProps, nextState, nextContext) =>
193
- lifecycleCall ('componentWillUpdateWithContext' ,
194
- arguments: [Map .from (nextProps), Map .from (nextState), Map .from (nextContext)]);
190
+ componentWillUpdateWithContext (nextProps, nextState, nextContext) => lifecycleCall ('componentWillUpdateWithContext' ,
191
+ arguments: [Map .from (nextProps), Map .from (nextState), Map .from (nextContext)]);
195
192
196
193
@override
197
194
componentDidUpdate (prevProps, prevState) =>
0 commit comments