(linkFn, scope, $element, attrs, controllers, transcludeFn)
| 11330 | |
| 11331 | |
| 11332 | function invokeLinkFn(linkFn, scope, $element, attrs, controllers, transcludeFn) { |
| 11333 | try { |
| 11334 | linkFn(scope, $element, attrs, controllers, transcludeFn); |
| 11335 | } catch (e) { |
| 11336 | $exceptionHandler(e, startingTag($element)); |
| 11337 | } |
| 11338 | } |
| 11339 | |
| 11340 | function strictBindingsCheck(attrName, directiveName) { |
| 11341 | if (strictComponentBindingsEnabled) { |
no test coverage detected