Skip to content

Commit 44188b9

Browse files
committed
chore(typings): mark underscore-prefix members @internal
I still haven't made a tslint check for this, so new occurrences leaked in. See angular#4645 Closes angular#4986
1 parent 53fe0fa commit 44188b9

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

modules/angular2/src/core/application_ref.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ export abstract class PlatformRef {
215215
export class PlatformRef_ extends PlatformRef {
216216
/** @internal */
217217
_applications: ApplicationRef[] = [];
218+
/** @internal */
218219
_disposeListeners: Function[] = [];
219220

220221
constructor(private _injector: Injector, private _dispose: () => void) { super(); }

modules/angular2/src/core/zone/ng_zone.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

modules/angular2/src/router/router.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,7 @@ export class Router {
478478
export class RootRouter extends Router {
479479
/** @internal */
480480
_location: Location;
481+
/** @internal */
481482
_locationSub: Object;
482483

483484
constructor(registry: RouteRegistry, location: Location, primaryComponent: Type) {

0 commit comments

Comments
 (0)