(linkFn, scope, $element, attrs, controllers, transcludeFn)
| 10696 | |
| 10697 | |
| 10698 | function invokeLinkFn(linkFn, scope, $element, attrs, controllers, transcludeFn) { |
| 10699 | try { |
| 10700 | linkFn(scope, $element, attrs, controllers, transcludeFn); |
| 10701 | } catch (e) { |
| 10702 | $exceptionHandler(e, startingTag($element)); |
| 10703 | } |
| 10704 | } |
| 10705 | |
| 10706 | function strictBindingsCheck(attrName, directiveName) { |
| 10707 | if (strictComponentBindingsEnabled) { |
no test coverage detected