(parsedExpression)
| 17518 | } |
| 17519 | |
| 17520 | function addWatchDelegate(parsedExpression) { |
| 17521 | if (parsedExpression.constant) { |
| 17522 | parsedExpression.$$watchDelegate = constantWatchDelegate; |
| 17523 | } else if (parsedExpression.oneTime) { |
| 17524 | parsedExpression.$$watchDelegate = oneTimeWatchDelegate; |
| 17525 | } else if (parsedExpression.inputs) { |
| 17526 | parsedExpression.$$watchDelegate = inputsWatchDelegate; |
| 17527 | } |
| 17528 | |
| 17529 | return parsedExpression; |
| 17530 | } |
| 17531 | |
| 17532 | function chainInterceptors(first, second) { |
| 17533 | function chainedInterceptor(value) { |
no outgoing calls
no test coverage detected