(linkFn, scope, $element, attrs, controllers, transcludeFn)
| 9488 | |
| 9489 | |
| 9490 | function invokeLinkFn(linkFn, scope, $element, attrs, controllers, transcludeFn) { |
| 9491 | try { |
| 9492 | linkFn(scope, $element, attrs, controllers, transcludeFn); |
| 9493 | } catch (e) { |
| 9494 | $exceptionHandler(e, startingTag($element)); |
| 9495 | } |
| 9496 | } |
| 9497 | |
| 9498 | |
| 9499 | // Set up $watches for isolate scope and controller bindings. This process |
no test coverage detected