File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -200,20 +200,20 @@ function $RootScopeProvider(){
200
200
// but cache it to allow the VM to optimize lookups.
201
201
if ( ! this . $$childScopeClass ) {
202
202
this . $$childScopeClass = function ( ) {
203
- this . $$watchers = this . $$nextSibling =
204
- this . $$childHead = this . $$childTail = null ;
205
- this . $$listeners = { } ;
206
- this . $$listenerCount = { } ;
207
- this . $id = nextUid ( ) ;
208
- this . $$childScopeClass = null ;
203
+ this [ ' $$watchers' ] = this [ ' $$nextSibling' ] =
204
+ this [ ' $$childHead' ] = this [ ' $$childTail' ] = null ;
205
+ this [ ' $$listeners' ] = { } ;
206
+ this [ ' $$listenerCount' ] = { } ;
207
+ this [ ' $id' ] = nextUid ( ) ;
208
+ this [ ' $$childScopeClass' ] = null ;
209
209
} ;
210
210
this . $$childScopeClass . prototype = this ;
211
211
}
212
212
child = new this . $$childScopeClass ( ) ;
213
213
}
214
214
child [ 'this' ] = child ;
215
- child . $parent = this ;
216
- child . $$prevSibling = this . $$childTail ;
215
+ child [ ' $parent' ] = this ;
216
+ child [ ' $$prevSibling' ] = this . $$childTail ;
217
217
if ( this . $$childHead ) {
218
218
this . $$childTail . $$nextSibling = child ;
219
219
this . $$childTail = child ;
You can’t perform that action at this time.
0 commit comments