MCPcopy Create free account
hub / github.com/bclinkinbeard/angular / Scope

Function Scope

test/fixtures/foo.js:11988–12000  ·  view source on GitHub ↗

* @ngdoc type * @name $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. (Most

()

Source from the content-addressed store, hash-verified

11986 *
11987 */
11988 function Scope() {
11989 this.$id = nextUid();
11990 this.$$phase = this.$parent = this.$$watchers =
11991 this.$$nextSibling = this.$$prevSibling =
11992 this.$$childHead = this.$$childTail = null;
11993 this['this'] = this.$root = this;
11994 this.$$destroyed = false;
11995 this.$$asyncQueue = [];
11996 this.$$postDigestQueue = [];
11997 this.$$listeners = {};
11998 this.$$listenerCount = {};
11999 this.$$isolateBindings = {};
12000 }
12001
12002 /**
12003 * @ngdoc property

Callers

nothing calls this directly

Calls 1

nextUidFunction · 0.85

Tested by

no test coverage detected