(parent)
| 17771 | }; |
| 17772 | |
| 17773 | function createChildScopeClass(parent) { |
| 17774 | function ChildScope() { |
| 17775 | this.$$watchers = this.$$nextSibling = |
| 17776 | this.$$childHead = this.$$childTail = null; |
| 17777 | this.$$listeners = {}; |
| 17778 | this.$$listenerCount = {}; |
| 17779 | this.$$watchersCount = 0; |
| 17780 | this.$id = nextUid(); |
| 17781 | this.$$ChildScope = null; |
| 17782 | this.$$suspended = false; |
| 17783 | } |
| 17784 | ChildScope.prototype = parent; |
| 17785 | return ChildScope; |
| 17786 | } |
| 17787 | |
| 17788 | this.$get = ['$exceptionHandler', '$parse', '$browser', |
| 17789 | function($exceptionHandler, $parse, $browser) { |
no outgoing calls
no test coverage detected