(parent)
| 18460 | }; |
| 18461 | |
| 18462 | function createChildScopeClass(parent) { |
| 18463 | function ChildScope() { |
| 18464 | this.$$watchers = this.$$nextSibling = |
| 18465 | this.$$childHead = this.$$childTail = null; |
| 18466 | this.$$listeners = {}; |
| 18467 | this.$$listenerCount = {}; |
| 18468 | this.$$watchersCount = 0; |
| 18469 | this.$id = nextUid(); |
| 18470 | this.$$ChildScope = null; |
| 18471 | this.$$suspended = false; |
| 18472 | } |
| 18473 | ChildScope.prototype = parent; |
| 18474 | return ChildScope; |
| 18475 | } |
| 18476 | |
| 18477 | this.$get = ['$exceptionHandler', '$parse', '$browser', |
| 18478 | function($exceptionHandler, $parse, $browser) { |
no outgoing calls
no test coverage detected