(parent)
| 18395 | }; |
| 18396 | |
| 18397 | function createChildScopeClass(parent) { |
| 18398 | function ChildScope() { |
| 18399 | this.$$watchers = this.$$nextSibling = |
| 18400 | this.$$childHead = this.$$childTail = null; |
| 18401 | this.$$listeners = {}; |
| 18402 | this.$$listenerCount = {}; |
| 18403 | this.$$watchersCount = 0; |
| 18404 | this.$id = nextUid(); |
| 18405 | this.$$ChildScope = null; |
| 18406 | this.$$suspended = false; |
| 18407 | } |
| 18408 | ChildScope.prototype = parent; |
| 18409 | return ChildScope; |
| 18410 | } |
| 18411 | |
| 18412 | this.$get = ['$exceptionHandler', '$parse', '$browser', |
| 18413 | function($exceptionHandler, $parse, $browser) { |
no outgoing calls
no test coverage detected