(parent)
| 15506 | }; |
| 15507 | |
| 15508 | function createChildScopeClass(parent) { |
| 15509 | function ChildScope() { |
| 15510 | this.$$watchers = this.$$nextSibling = |
| 15511 | this.$$childHead = this.$$childTail = null; |
| 15512 | this.$$listeners = {}; |
| 15513 | this.$$listenerCount = {}; |
| 15514 | this.$$watchersCount = 0; |
| 15515 | this.$id = nextUid(); |
| 15516 | this.$$ChildScope = null; |
| 15517 | } |
| 15518 | ChildScope.prototype = parent; |
| 15519 | return ChildScope; |
| 15520 | } |
| 15521 | |
| 15522 | this.$get = ['$injector', '$exceptionHandler', '$parse', '$browser', |
| 15523 | function($injector, $exceptionHandler, $parse, $browser) { |
no outgoing calls
no test coverage detected