(linkFn, scope, $element, attrs, controllers, transcludeFn)
| 8646 | |
| 8647 | |
| 8648 | function invokeLinkFn(linkFn, scope, $element, attrs, controllers, transcludeFn) { |
| 8649 | try { |
| 8650 | linkFn(scope, $element, attrs, controllers, transcludeFn); |
| 8651 | } catch (e) { |
| 8652 | $exceptionHandler(e, startingTag($element)); |
| 8653 | } |
| 8654 | } |
| 8655 | |
| 8656 | |
| 8657 | // Set up $watches for isolate scope and controller bindings. This process |
no test coverage detected