(linkFn, scope, $element, attrs, controllers, transcludeFn)
| 9095 | |
| 9096 | |
| 9097 | function invokeLinkFn(linkFn, scope, $element, attrs, controllers, transcludeFn) { |
| 9098 | try { |
| 9099 | linkFn(scope, $element, attrs, controllers, transcludeFn); |
| 9100 | } catch (e) { |
| 9101 | $exceptionHandler(e, startingTag($element)); |
| 9102 | } |
| 9103 | } |
| 9104 | |
| 9105 | |
| 9106 | // Set up $watches for isolate scope and controller bindings. This process |
no test coverage detected