(linkFn, scope, $element, attrs, controllers, transcludeFn)
| 10607 | |
| 10608 | |
| 10609 | function invokeLinkFn(linkFn, scope, $element, attrs, controllers, transcludeFn) { |
| 10610 | try { |
| 10611 | linkFn(scope, $element, attrs, controllers, transcludeFn); |
| 10612 | } catch (e) { |
| 10613 | $exceptionHandler(e, startingTag($element)); |
| 10614 | } |
| 10615 | } |
| 10616 | |
| 10617 | function strictBindingsCheck(attrName, directiveName) { |
| 10618 | if (strictComponentBindingsEnabled) { |
no test coverage detected