| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  | import {bindingUpdated, bindingUpdated2, bindingUpdated4, checkAndUpdateBinding, consumeBinding, getCreationMode} from './instructions'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * If the value hasn't been saved, calls the pure function to store and return the | 
					
						
							|  |  |  |  * value. If it has been saved, returns the saved value. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @param pureFn Function that returns a value | 
					
						
							|  |  |  |  * @returns value | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  | export function pureFunction0<T>(pureFn: () => T, thisArg?: any): T { | 
					
						
							|  |  |  |   return getCreationMode() ? checkAndUpdateBinding(thisArg ? pureFn.call(thisArg) : pureFn()) : | 
					
						
							|  |  |  |                              consumeBinding(); | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * If the value of the provided exp has changed, calls the pure function to return | 
					
						
							|  |  |  |  * an updated value. Or if the value has not changed, returns cached value. | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  |  * @param pureFn Function that returns an updated value | 
					
						
							| 
									
										
										
										
											2018-02-13 10:24:41 -08:00
										 |  |  |  * @param exp Updated expression value | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * @returns Updated value | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  | export function pureFunction1(pureFn: (v: any) => any, exp: any, thisArg?: any): any { | 
					
						
							|  |  |  |   return bindingUpdated(exp) ? | 
					
						
							|  |  |  |       checkAndUpdateBinding(thisArg ? pureFn.call(thisArg, exp) : pureFn(exp)) : | 
					
						
							|  |  |  |       consumeBinding(); | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * If the value of any provided exp has changed, calls the pure function to return | 
					
						
							|  |  |  |  * an updated value. Or if no values have changed, returns cached value. | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  |  * @param pureFn | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * @param exp1 | 
					
						
							|  |  |  |  * @param exp2 | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * @returns Updated value | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  | export function pureFunction2( | 
					
						
							|  |  |  |     pureFn: (v1: any, v2: any) => any, exp1: any, exp2: any, thisArg?: any): any { | 
					
						
							|  |  |  |   return bindingUpdated2(exp1, exp2) ? | 
					
						
							|  |  |  |       checkAndUpdateBinding(thisArg ? pureFn.call(thisArg, exp1, exp2) : pureFn(exp1, exp2)) : | 
					
						
							|  |  |  |       consumeBinding(); | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * If the value of any provided exp has changed, calls the pure function to return | 
					
						
							|  |  |  |  * an updated value. Or if no values have changed, returns cached value. | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  |  * @param pureFn | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * @param exp1 | 
					
						
							|  |  |  |  * @param exp2 | 
					
						
							|  |  |  |  * @param exp3 | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * @returns Updated value | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  | export function pureFunction3( | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  |     pureFn: (v1: any, v2: any, v3: any) => any, exp1: any, exp2: any, exp3: any, | 
					
						
							|  |  |  |     thisArg?: any): any { | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |   const different = bindingUpdated2(exp1, exp2); | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  |   return bindingUpdated(exp3) || different ? | 
					
						
							|  |  |  |       checkAndUpdateBinding( | 
					
						
							|  |  |  |           thisArg ? pureFn.call(thisArg, exp1, exp2, exp3) : pureFn(exp1, exp2, exp3)) : | 
					
						
							|  |  |  |       consumeBinding(); | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * If the value of any provided exp has changed, calls the pure function to return | 
					
						
							|  |  |  |  * an updated value. Or if no values have changed, returns cached value. | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  |  * @param pureFn | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * @param exp1 | 
					
						
							|  |  |  |  * @param exp2 | 
					
						
							|  |  |  |  * @param exp3 | 
					
						
							|  |  |  |  * @param exp4 | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * @returns Updated value | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  | export function pureFunction4( | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  |     pureFn: (v1: any, v2: any, v3: any, v4: any) => any, exp1: any, exp2: any, exp3: any, exp4: any, | 
					
						
							|  |  |  |     thisArg?: any): any { | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |   return bindingUpdated4(exp1, exp2, exp3, exp4) ? | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  |       checkAndUpdateBinding( | 
					
						
							|  |  |  |           thisArg ? pureFn.call(thisArg, exp1, exp2, exp3, exp4) : pureFn(exp1, exp2, exp3, exp4)) : | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |       consumeBinding(); | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * If the value of any provided exp has changed, calls the pure function to return | 
					
						
							|  |  |  |  * an updated value. Or if no values have changed, returns cached value. | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  |  * @param pureFn | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * @param exp1 | 
					
						
							|  |  |  |  * @param exp2 | 
					
						
							|  |  |  |  * @param exp3 | 
					
						
							|  |  |  |  * @param exp4 | 
					
						
							|  |  |  |  * @param exp5 | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * @returns Updated value | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  | export function pureFunction5( | 
					
						
							|  |  |  |     pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any) => any, exp1: any, exp2: any, exp3: any, | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  |     exp4: any, exp5: any, thisArg?: any): any { | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |   const different = bindingUpdated4(exp1, exp2, exp3, exp4); | 
					
						
							|  |  |  |   return bindingUpdated(exp5) || different ? | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  |       checkAndUpdateBinding( | 
					
						
							|  |  |  |           thisArg ? pureFn.call(thisArg, exp1, exp2, exp3, exp4, exp5) : | 
					
						
							|  |  |  |                     pureFn(exp1, exp2, exp3, exp4, exp5)) : | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |       consumeBinding(); | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * If the value of any provided exp has changed, calls the pure function to return | 
					
						
							|  |  |  |  * an updated value. Or if no values have changed, returns cached value. | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  |  * @param pureFn | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * @param exp1 | 
					
						
							|  |  |  |  * @param exp2 | 
					
						
							|  |  |  |  * @param exp3 | 
					
						
							|  |  |  |  * @param exp4 | 
					
						
							|  |  |  |  * @param exp5 | 
					
						
							|  |  |  |  * @param exp6 | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * @returns Updated value | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  | export function pureFunction6( | 
					
						
							|  |  |  |     pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any, v6: any) => any, exp1: any, exp2: any, | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  |     exp3: any, exp4: any, exp5: any, exp6: any, thisArg?: any): any { | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |   const different = bindingUpdated4(exp1, exp2, exp3, exp4); | 
					
						
							|  |  |  |   return bindingUpdated2(exp5, exp6) || different ? | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  |       checkAndUpdateBinding( | 
					
						
							|  |  |  |           thisArg ? pureFn.call(thisArg, exp1, exp2, exp3, exp4, exp5, exp6) : | 
					
						
							|  |  |  |                     pureFn(exp1, exp2, exp3, exp4, exp5, exp6)) : | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |       consumeBinding(); | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * If the value of any provided exp has changed, calls the pure function to return | 
					
						
							|  |  |  |  * an updated value. Or if no values have changed, returns cached value. | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  |  * @param pureFn | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * @param exp1 | 
					
						
							|  |  |  |  * @param exp2 | 
					
						
							|  |  |  |  * @param exp3 | 
					
						
							|  |  |  |  * @param exp4 | 
					
						
							|  |  |  |  * @param exp5 | 
					
						
							|  |  |  |  * @param exp6 | 
					
						
							|  |  |  |  * @param exp7 | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * @returns Updated value | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  | export function pureFunction7( | 
					
						
							|  |  |  |     pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any, v6: any, v7: any) => any, exp1: any, | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  |     exp2: any, exp3: any, exp4: any, exp5: any, exp6: any, exp7: any, thisArg?: any): any { | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |   let different = bindingUpdated4(exp1, exp2, exp3, exp4); | 
					
						
							|  |  |  |   different = bindingUpdated2(exp5, exp6) || different; | 
					
						
							|  |  |  |   return bindingUpdated(exp7) || different ? | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  |       checkAndUpdateBinding( | 
					
						
							|  |  |  |           thisArg ? pureFn.call(thisArg, exp1, exp2, exp3, exp4, exp5, exp6, exp7) : | 
					
						
							|  |  |  |                     pureFn(exp1, exp2, exp3, exp4, exp5, exp6, exp7)) : | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |       consumeBinding(); | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * If the value of any provided exp has changed, calls the pure function to return | 
					
						
							|  |  |  |  * an updated value. Or if no values have changed, returns cached value. | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  |  * @param pureFn | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  * @param exp1 | 
					
						
							|  |  |  |  * @param exp2 | 
					
						
							|  |  |  |  * @param exp3 | 
					
						
							|  |  |  |  * @param exp4 | 
					
						
							|  |  |  |  * @param exp5 | 
					
						
							|  |  |  |  * @param exp6 | 
					
						
							|  |  |  |  * @param exp7 | 
					
						
							|  |  |  |  * @param exp8 | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * @returns Updated value | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  | export function pureFunction8( | 
					
						
							|  |  |  |     pureFn: (v1: any, v2: any, v3: any, v4: any, v5: any, v6: any, v7: any, v8: any) => any, | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  |     exp1: any, exp2: any, exp3: any, exp4: any, exp5: any, exp6: any, exp7: any, exp8: any, | 
					
						
							|  |  |  |     thisArg?: any): any { | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |   const different = bindingUpdated4(exp1, exp2, exp3, exp4); | 
					
						
							| 
									
										
										
										
											2018-02-19 15:00:34 +01:00
										 |  |  |   return bindingUpdated4(exp5, exp6, exp7, exp8) || different ? | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  |       checkAndUpdateBinding( | 
					
						
							|  |  |  |           thisArg ? pureFn.call(thisArg, exp1, exp2, exp3, exp4, exp5, exp6, exp7, exp8) : | 
					
						
							|  |  |  |                     pureFn(exp1, exp2, exp3, exp4, exp5, exp6, exp7, exp8)) : | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |       consumeBinding(); | 
					
						
							| 
									
										
										
										
											2018-02-13 10:24:41 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  |  * pureFunction instruction that can support any number of bindings. | 
					
						
							| 
									
										
										
										
											2018-02-13 10:24:41 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * If the value of any provided exp has changed, calls the pure function to return | 
					
						
							|  |  |  |  * an updated value. Or if no values have changed, returns cached value. | 
					
						
							| 
									
										
										
										
											2018-02-13 10:24:41 -08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-02-13 18:56:52 -08:00
										 |  |  |  * @param pureFn A pure function that takes binding values and builds an object or array | 
					
						
							| 
									
										
										
										
											2018-02-13 10:24:41 -08:00
										 |  |  |  * containing those values. | 
					
						
							|  |  |  |  * @param exp An array of binding values | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |  * @returns Updated value | 
					
						
							| 
									
										
										
										
											2018-02-13 10:24:41 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  | export function pureFunctionV(pureFn: (...v: any[]) => any, exps: any[], thisArg?: any): any { | 
					
						
							| 
									
										
										
										
											2018-02-13 10:24:41 -08:00
										 |  |  |   let different = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   for (let i = 0; i < exps.length; i++) { | 
					
						
							| 
									
										
										
										
											2018-02-14 13:37:54 -08:00
										 |  |  |     bindingUpdated(exps[i]) && (different = true); | 
					
						
							| 
									
										
										
										
											2018-02-13 10:24:41 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-02-16 16:23:27 +01:00
										 |  |  |   return different ? checkAndUpdateBinding(pureFn.apply(thisArg, exps)) : consumeBinding(); | 
					
						
							| 
									
										
										
										
											2018-02-01 12:13:23 -08:00
										 |  |  | } |