* @ngdoc function * @name ng.$rootScope.Scope * * @description * A root scope can be retrieved using the ng.$rootScope $rootScope key from the * AUTO.$injector $injector. Child scopes are created using the * ng.$rootScope.Scope#$new $new() method
()
| 7668 | * |
| 7669 | */ |
| 7670 | function Scope() { |
| 7671 | this.$id = nextUid(); |
| 7672 | this.$$phase = this.$parent = this.$$watchers = |
| 7673 | this.$$nextSibling = this.$$prevSibling = |
| 7674 | this.$$childHead = this.$$childTail = null; |
| 7675 | this['this'] = this.$root = this; |
| 7676 | this.$$destroyed = false; |
| 7677 | this.$$asyncQueue = []; |
| 7678 | this.$$listeners = {}; |
| 7679 | this.$$isolateBindings = {}; |
| 7680 | } |
| 7681 | |
| 7682 | /** |
| 7683 | * @ngdoc property |