(parsedExpression)
| 16944 | } |
| 16945 | |
| 16946 | function addWatchDelegate(parsedExpression) { |
| 16947 | if (parsedExpression.constant) { |
| 16948 | parsedExpression.$$watchDelegate = constantWatchDelegate; |
| 16949 | } else if (parsedExpression.oneTime) { |
| 16950 | parsedExpression.$$watchDelegate = oneTimeWatchDelegate; |
| 16951 | } else if (parsedExpression.inputs) { |
| 16952 | parsedExpression.$$watchDelegate = inputsWatchDelegate; |
| 16953 | } |
| 16954 | |
| 16955 | return parsedExpression; |
| 16956 | } |
| 16957 | |
| 16958 | function chainInterceptors(first, second) { |
| 16959 | function chainedInterceptor(value) { |
no outgoing calls
no test coverage detected