(directives, isolateScope, newScope)
| 10132 | // * if the directive itself asks for transclusion but it is at the root of a template and the original |
| 10133 | // element was replaced. See https://github.com/angular/angular.js/issues/12936 |
| 10134 | function markDirectiveScope(directives, isolateScope, newScope) { |
| 10135 | for (var j = 0, jj = directives.length; j < jj; j++) { |
| 10136 | directives[j] = inherit(directives[j], {$$isolateScope: isolateScope, $$newScope: newScope}); |
| 10137 | } |
| 10138 | } |
| 10139 | |
| 10140 | /** |
| 10141 | * looks up the directive and decorates it with exception handling and proper parameters. We |
no test coverage detected