(parent)
| 17586 | }; |
| 17587 | |
| 17588 | function createChildScopeClass(parent) { |
| 17589 | function ChildScope() { |
| 17590 | this.$$watchers = this.$$nextSibling = |
| 17591 | this.$$childHead = this.$$childTail = null; |
| 17592 | this.$$listeners = {}; |
| 17593 | this.$$listenerCount = {}; |
| 17594 | this.$$watchersCount = 0; |
| 17595 | this.$id = nextUid(); |
| 17596 | this.$$ChildScope = null; |
| 17597 | } |
| 17598 | ChildScope.prototype = parent; |
| 17599 | return ChildScope; |
| 17600 | } |
| 17601 | |
| 17602 | this.$get = ['$exceptionHandler', '$parse', '$browser', |
| 17603 | function($exceptionHandler, $parse, $browser) { |
no outgoing calls
no test coverage detected