File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -11984,21 +11984,21 @@ function $RootScopeProvider(){
11984
11984
// Only create a child scope class if somebody asks for one,
11985
11985
// but cache it to allow the VM to optimize lookups.
11986
11986
if (!this.$$childScopeClass) {
11987
- this. $$childScopeClass = function() {
11988
- this. $$watchers = this. $$nextSibling =
11989
- this. $$childHead = this. $$childTail = null;
11990
- this. $$listeners = {};
11991
- this. $$listenerCount = {};
11992
- this. $id = nextUid();
11993
- this. $$childScopeClass = null;
11987
+ this[' $$childScopeClass'] = function() {
11988
+ this[' $$watchers'] = this[' $$nextSibling'] =
11989
+ this[' $$childHead'] = this[' $$childTail'] = null;
11990
+ this[' $$listeners'] = {};
11991
+ this[' $$listenerCount'] = {};
11992
+ this[' $id'] = nextUid();
11993
+ this[' $$childScopeClass'] = null;
11994
11994
};
11995
11995
this.$$childScopeClass.prototype = this;
11996
11996
}
11997
11997
child = new this.$$childScopeClass();
11998
11998
}
11999
11999
child['this'] = child;
12000
- child. $parent = this;
12001
- child. $$prevSibling = this.$$childTail;
12000
+ child[' $parent'] = this;
12001
+ child[' $$prevSibling'] = this.$$childTail;
12002
12002
if (this.$$childHead) {
12003
12003
this.$$childTail.$$nextSibling = child;
12004
12004
this.$$childTail = child;
You can’t perform that action at this time.
0 commit comments