(parent)
| 15942 | }; |
| 15943 | |
| 15944 | function createChildScopeClass(parent) { |
| 15945 | function ChildScope() { |
| 15946 | this.$$watchers = this.$$nextSibling = |
| 15947 | this.$$childHead = this.$$childTail = null; |
| 15948 | this.$$listeners = {}; |
| 15949 | this.$$listenerCount = {}; |
| 15950 | this.$$watchersCount = 0; |
| 15951 | this.$id = nextUid(); |
| 15952 | this.$$ChildScope = null; |
| 15953 | } |
| 15954 | ChildScope.prototype = parent; |
| 15955 | return ChildScope; |
| 15956 | } |
| 15957 | |
| 15958 | this.$get = ['$exceptionHandler', '$parse', '$browser', |
| 15959 | function($exceptionHandler, $parse, $browser) { |
no outgoing calls
no test coverage detected