(parent)
| 17815 | }; |
| 17816 | |
| 17817 | function createChildScopeClass(parent) { |
| 17818 | function ChildScope() { |
| 17819 | this.$$watchers = this.$$nextSibling = |
| 17820 | this.$$childHead = this.$$childTail = null; |
| 17821 | this.$$listeners = {}; |
| 17822 | this.$$listenerCount = {}; |
| 17823 | this.$$watchersCount = 0; |
| 17824 | this.$id = nextUid(); |
| 17825 | this.$$ChildScope = null; |
| 17826 | this.$$suspended = false; |
| 17827 | } |
| 17828 | ChildScope.prototype = parent; |
| 17829 | return ChildScope; |
| 17830 | } |
| 17831 | |
| 17832 | this.$get = ['$exceptionHandler', '$parse', '$browser', |
| 17833 | function($exceptionHandler, $parse, $browser) { |
no outgoing calls
no test coverage detected