(parent)
| 17100 | }; |
| 17101 | |
| 17102 | function createChildScopeClass(parent) { |
| 17103 | function ChildScope() { |
| 17104 | this.$$watchers = this.$$nextSibling = |
| 17105 | this.$$childHead = this.$$childTail = null; |
| 17106 | this.$$listeners = {}; |
| 17107 | this.$$listenerCount = {}; |
| 17108 | this.$$watchersCount = 0; |
| 17109 | this.$id = nextUid(); |
| 17110 | this.$$ChildScope = null; |
| 17111 | } |
| 17112 | ChildScope.prototype = parent; |
| 17113 | return ChildScope; |
| 17114 | } |
| 17115 | |
| 17116 | this.$get = ['$exceptionHandler', '$parse', '$browser', |
| 17117 | function($exceptionHandler, $parse, $browser) { |
no outgoing calls
no test coverage detected