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 {
215215export class PlatformRef_ extends PlatformRef {
216216 /** @internal */
217217 _applications : ApplicationRef [ ] = [ ] ;
218+ /** @internal */
218219 _disposeListeners : Function [ ] = [ ] ;
219220
220221 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 {
185185 */
186186 get onTurnStart ( ) : /* Subject */ any { return this . _onTurnStartEvents ; }
187187
188+ /** @internal */
188189 _notifyOnTurnStart ( parentRun ) : void {
189190 parentRun . call ( this . _innerZone , ( ) => { this . _onTurnStartEvents . next ( null ) ; } ) ;
190191 }
@@ -213,6 +214,7 @@ export class NgZone {
213214 */
214215 get onTurnDone ( ) { return this . _onTurnDoneEvents ; }
215216
217+ /** @internal */
216218 _notifyOnTurnDone ( parentRun ) : void {
217219 parentRun . call ( this . _innerZone , ( ) => { this . _onTurnDoneEvents . next ( null ) ; } ) ;
218220 }
@@ -251,6 +253,7 @@ export class NgZone {
251253 */
252254 get onEventDone ( ) { return this . _onEventDoneEvents ; }
253255
256+ /** @internal */
254257 _notifyOnEventDone ( ) : void {
255258 this . runOutsideAngular ( ( ) => { this . _onEventDoneEvents . next ( null ) ; } ) ;
256259 }
Original file line number Diff line number Diff line change @@ -478,6 +478,7 @@ export class Router {
478478export class RootRouter extends Router {
479479 /** @internal */
480480 _location : Location ;
481+ /** @internal */
481482 _locationSub : Object ;
482483
483484 constructor ( registry : RouteRegistry , location : Location , primaryComponent : Type ) {
You can’t perform that action at this time.
0 commit comments