(linkFn, scope, $element, attrs, controllers, transcludeFn)
| 10678 | |
| 10679 | |
| 10680 | function invokeLinkFn(linkFn, scope, $element, attrs, controllers, transcludeFn) { |
| 10681 | try { |
| 10682 | linkFn(scope, $element, attrs, controllers, transcludeFn); |
| 10683 | } catch (e) { |
| 10684 | $exceptionHandler(e, startingTag($element)); |
| 10685 | } |
| 10686 | } |
| 10687 | |
| 10688 | function strictBindingsCheck(attrName, directiveName) { |
| 10689 | if (strictComponentBindingsEnabled) { |
no test coverage detected