(linkFn, scope, $element, attrs, controllers, transcludeFn)
| 9734 | } |
| 9735 | |
| 9736 | function invokeLinkFn(linkFn, scope, $element, attrs, controllers, transcludeFn) { |
| 9737 | try { |
| 9738 | linkFn(scope, $element, attrs, controllers, transcludeFn); |
| 9739 | } catch (e) { |
| 9740 | $exceptionHandler(e, startingTag($element)); |
| 9741 | } |
| 9742 | } |
| 9743 | |
| 9744 | // Set up $watches for isolate scope and controller bindings. This process |
| 9745 | // only occurs for isolate scopes and new scopes with controllerAs. |
no test coverage detected