@@ -4,30 +4,30 @@ import {normalizeBlank, isPresent, global} from 'angular2/src/facade/lang';
4
4
/**
5
5
* A wrapper around zones that lets you schedule tasks after it has executed a task.
6
6
*
7
- * The wrapper maintains an "inner" and "outer " `Zone`. The application code will executes
7
+ * The wrapper maintains an "inner" and an "mount " `Zone`. The application code will executes
8
8
* in the "inner" zone unless `runOutsideAngular` is explicitely called.
9
9
*
10
- * A typical application will create a singleton `VmTurnZone `. The outer `Zone` is a fork of the root
10
+ * A typical application will create a singleton `NgZone `. The outer `Zone` is a fork of the root
11
11
* `Zone`. The default `onTurnDone` runs the Angular change detection.
12
12
*
13
13
* @exportedAs angular2/core
14
14
*/
15
- export class VmTurnZone {
16
- // Code executed in _outerZone does not trigger the onTurnDone.
17
- _outerZone ;
18
- // _innerZone is the child of _outerZone . Any code executed in this zone will trigger the
15
+ export class NgZone {
16
+ // Code executed in _mountZone does not trigger the onTurnDone.
17
+ _mountZone ;
18
+ // _innerZone is the child of _mountZone . Any code executed in this zone will trigger the
19
19
// onTurnDone hook at the end of the current VM turn.
20
20
_innerZone ;
21
21
22
22
_onTurnStart :Function ;
23
23
_onTurnDone :Function ;
24
24
_onErrorHandler :Function ;
25
25
26
- // Number of microtasks pending from _outerZone (& descendants)
26
+ // Number of microtasks pending from _innerZone (& descendants)
27
27
_pendingMicrotask : number ;
28
28
// Whether some code has been executed in the _innerZone (& descendants) in the current turn
29
29
_hasExecutedCodeInInnerZone : boolean ;
30
- // run() call depth in _outerZone . 0 at the end of a macrotask
30
+ // run() call depth in _mountZone . 0 at the end of a macrotask
31
31
// zone.run(() => { // top-level call
32
32
// zone.run(() => {}); // nested call -> in-turn
33
33
// });
@@ -36,8 +36,8 @@ export class VmTurnZone {
36
36
/**
37
37
* Associates with this
38
38
*
39
- * - an "outer " zone, which is a child of the one that created this.
40
- * - an "inner" zone, which is a child of the outer zone.
39
+ * - a "root " zone, which the one that instantiated this.
40
+ * - an "inner" zone, which is a child of the root zone.
41
41
*
42
42
* @param {bool } enableLongStackTrace whether to enable long stack trace. They should only be
43
43
* enabled in development mode as they significantly impact perf.
@@ -51,8 +51,8 @@ export class VmTurnZone {
51
51
this . _hasExecutedCodeInInnerZone = false ;
52
52
this . _nestedRun = 0 ;
53
53
54
- this . _outerZone = global . zone ;
55
- this . _innerZone = this . _createInnerZone ( this . _outerZone , enableLongStackTrace )
54
+ this . _mountZone = global . zone ;
55
+ this . _innerZone = this . _createInnerZone ( this . _mountZone , enableLongStackTrace )
56
56
}
57
57
58
58
/**
@@ -75,7 +75,7 @@ export class VmTurnZone {
75
75
* Angular's auto digest mechanism.
76
76
*
77
77
* ```
78
- * var zone: VmTurnZone = [ref to the application zone];
78
+ * var zone: NgZone = [ref to the application zone];
79
79
*
80
80
* zone.run(() => {
81
81
* // the change detection will run after this function and the microtasks it enqueues have executed.
@@ -93,7 +93,7 @@ export class VmTurnZone {
93
93
* auto-digest mechanism.
94
94
*
95
95
* ```
96
- * var zone: VmTurnZone = [ref to the application zone];
96
+ * var zone: NgZone = [ref to the application zone];
97
97
*
98
98
* zone.runOusideAngular(() => {
99
99
* element.onClick(() => {
@@ -103,23 +103,23 @@ export class VmTurnZone {
103
103
* ```
104
104
*/
105
105
runOutsideAngular ( fn ) {
106
- return this . _outerZone . run ( fn ) ;
106
+ return this . _mountZone . run ( fn ) ;
107
107
}
108
108
109
109
_createInnerZone ( zone , enableLongStackTrace ) {
110
- var vmTurnZone = this ;
110
+ var ngZone = this ;
111
111
var errorHandling ;
112
112
113
113
if ( enableLongStackTrace ) {
114
114
errorHandling = StringMapWrapper . merge ( Zone . longStackTraceZone , {
115
115
onError : function ( e ) {
116
- vmTurnZone . _onError ( this , e )
116
+ ngZone . _onError ( this , e )
117
117
}
118
118
} ) ;
119
119
} else {
120
120
errorHandling = {
121
121
onError : function ( e ) {
122
- vmTurnZone . _onError ( this , e )
122
+ ngZone . _onError ( this , e )
123
123
}
124
124
} ;
125
125
}
@@ -130,25 +130,25 @@ export class VmTurnZone {
130
130
'$run' : function ( parentRun ) {
131
131
return function ( ) {
132
132
try {
133
- vmTurnZone . _nestedRun ++ ;
134
- if ( ! vmTurnZone . _hasExecutedCodeInInnerZone ) {
135
- vmTurnZone . _hasExecutedCodeInInnerZone = true ;
136
- if ( vmTurnZone . _onTurnStart ) {
137
- parentRun . call ( vmTurnZone . _innerZone , vmTurnZone . _onTurnStart ) ;
133
+ ngZone . _nestedRun ++ ;
134
+ if ( ! ngZone . _hasExecutedCodeInInnerZone ) {
135
+ ngZone . _hasExecutedCodeInInnerZone = true ;
136
+ if ( ngZone . _onTurnStart ) {
137
+ parentRun . call ( ngZone . _innerZone , ngZone . _onTurnStart ) ;
138
138
}
139
139
}
140
140
return parentRun . apply ( this , arguments ) ;
141
141
} finally {
142
- vmTurnZone . _nestedRun -- ;
142
+ ngZone . _nestedRun -- ;
143
143
// If there are no more pending microtasks, we are at the end of a VM turn (or in onTurnStart)
144
144
// _nestedRun will be 0 at the end of a macrotasks (it could be > 0 when there are nested calls
145
145
// to run()).
146
- if ( vmTurnZone . _pendingMicrotasks == 0 && vmTurnZone . _nestedRun == 0 ) {
147
- if ( vmTurnZone . _onTurnDone && vmTurnZone . _hasExecutedCodeInInnerZone ) {
146
+ if ( ngZone . _pendingMicrotasks == 0 && ngZone . _nestedRun == 0 ) {
147
+ if ( ngZone . _onTurnDone && ngZone . _hasExecutedCodeInInnerZone ) {
148
148
try {
149
- parentRun . call ( vmTurnZone . _innerZone , vmTurnZone . _onTurnDone ) ;
149
+ parentRun . call ( ngZone . _innerZone , ngZone . _onTurnDone ) ;
150
150
} finally {
151
- vmTurnZone . _hasExecutedCodeInInnerZone = false ;
151
+ ngZone . _hasExecutedCodeInInnerZone = false ;
152
152
}
153
153
}
154
154
}
@@ -157,12 +157,12 @@ export class VmTurnZone {
157
157
} ,
158
158
'$scheduleMicrotask' : function ( parentScheduleMicrotask ) {
159
159
return function ( fn ) {
160
- vmTurnZone . _pendingMicrotasks ++ ;
160
+ ngZone . _pendingMicrotasks ++ ;
161
161
var microtask = function ( ) {
162
162
try {
163
163
fn ( ) ;
164
164
} finally {
165
- vmTurnZone . _pendingMicrotasks -- ;
165
+ ngZone . _pendingMicrotasks -- ;
166
166
}
167
167
} ;
168
168
parentScheduleMicrotask . call ( this , microtask ) ;
0 commit comments