(parent)
| 13720 | }; |
| 13721 | |
| 13722 | function createChildScopeClass(parent) { |
| 13723 | function ChildScope() { |
| 13724 | this.$$watchers = this.$$nextSibling = |
| 13725 | this.$$childHead = this.$$childTail = null; |
| 13726 | this.$$listeners = {}; |
| 13727 | this.$$listenerCount = {}; |
| 13728 | this.$id = nextUid(); |
| 13729 | this.$$ChildScope = null; |
| 13730 | } |
| 13731 | ChildScope.prototype = parent; |
| 13732 | return ChildScope; |
| 13733 | } |
| 13734 | |
| 13735 | this.$get = ['$injector', '$exceptionHandler', '$parse', '$browser', |
| 13736 | function($injector, $exceptionHandler, $parse, $browser) { |
no outgoing calls
no test coverage detected