(parent)
| 14983 | }; |
| 14984 | |
| 14985 | function createChildScopeClass(parent) { |
| 14986 | function ChildScope() { |
| 14987 | this.$$watchers = this.$$nextSibling = |
| 14988 | this.$$childHead = this.$$childTail = null; |
| 14989 | this.$$listeners = {}; |
| 14990 | this.$$listenerCount = {}; |
| 14991 | this.$$watchersCount = 0; |
| 14992 | this.$id = nextUid(); |
| 14993 | this.$$ChildScope = null; |
| 14994 | } |
| 14995 | ChildScope.prototype = parent; |
| 14996 | return ChildScope; |
| 14997 | } |
| 14998 | |
| 14999 | this.$get = ['$injector', '$exceptionHandler', '$parse', '$browser', |
| 15000 | function($injector, $exceptionHandler, $parse, $browser) { |
no outgoing calls
no test coverage detected