(linkFn, scope, $element, attrs, controllers, transcludeFn)
| 11265 | |
| 11266 | |
| 11267 | function invokeLinkFn(linkFn, scope, $element, attrs, controllers, transcludeFn) { |
| 11268 | try { |
| 11269 | linkFn(scope, $element, attrs, controllers, transcludeFn); |
| 11270 | } catch (e) { |
| 11271 | $exceptionHandler(e, startingTag($element)); |
| 11272 | } |
| 11273 | } |
| 11274 | |
| 11275 | function strictBindingsCheck(attrName, directiveName) { |
| 11276 | if (strictComponentBindingsEnabled) { |
no test coverage detected