(parsedExpression)
| 17583 | } |
| 17584 | |
| 17585 | function addWatchDelegate(parsedExpression) { |
| 17586 | if (parsedExpression.constant) { |
| 17587 | parsedExpression.$$watchDelegate = constantWatchDelegate; |
| 17588 | } else if (parsedExpression.oneTime) { |
| 17589 | parsedExpression.$$watchDelegate = oneTimeWatchDelegate; |
| 17590 | } else if (parsedExpression.inputs) { |
| 17591 | parsedExpression.$$watchDelegate = inputsWatchDelegate; |
| 17592 | } |
| 17593 | |
| 17594 | return parsedExpression; |
| 17595 | } |
| 17596 | |
| 17597 | function chainInterceptors(first, second) { |
| 17598 | function chainedInterceptor(value) { |
no outgoing calls
no test coverage detected