File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -215,6 +215,7 @@ export abstract class PlatformRef {
215
215
export class PlatformRef_ extends PlatformRef {
216
216
/** @internal */
217
217
_applications : ApplicationRef [ ] = [ ] ;
218
+ /** @internal */
218
219
_disposeListeners : Function [ ] = [ ] ;
219
220
220
221
constructor ( private _injector : Injector , private _dispose : ( ) => void ) { super ( ) ; }
Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ export class NgZone {
185
185
*/
186
186
get onTurnStart ( ) : /* Subject */ any { return this . _onTurnStartEvents ; }
187
187
188
+ /** @internal */
188
189
_notifyOnTurnStart ( parentRun ) : void {
189
190
parentRun . call ( this . _innerZone , ( ) => { this . _onTurnStartEvents . next ( null ) ; } ) ;
190
191
}
@@ -213,6 +214,7 @@ export class NgZone {
213
214
*/
214
215
get onTurnDone ( ) { return this . _onTurnDoneEvents ; }
215
216
217
+ /** @internal */
216
218
_notifyOnTurnDone ( parentRun ) : void {
217
219
parentRun . call ( this . _innerZone , ( ) => { this . _onTurnDoneEvents . next ( null ) ; } ) ;
218
220
}
@@ -251,6 +253,7 @@ export class NgZone {
251
253
*/
252
254
get onEventDone ( ) { return this . _onEventDoneEvents ; }
253
255
256
+ /** @internal */
254
257
_notifyOnEventDone ( ) : void {
255
258
this . runOutsideAngular ( ( ) => { this . _onEventDoneEvents . next ( null ) ; } ) ;
256
259
}
Original file line number Diff line number Diff line change @@ -478,6 +478,7 @@ export class Router {
478
478
export class RootRouter extends Router {
479
479
/** @internal */
480
480
_location : Location ;
481
+ /** @internal */
481
482
_locationSub : Object ;
482
483
483
484
constructor ( registry : RouteRegistry , location : Location , primaryComponent : Type ) {
You can’t perform that action at this time.
0 commit comments