chore(docs): rename @private to @internal

The latter is understood by TypeScript's --stripInternal option, so this lets us
rely more on the tooling provided by typescript team.
This commit is contained in:
Alex Eagle
2015-10-02 13:32:48 -07:00
parent 4a36fd8203
commit f7aa890ade
38 changed files with 98 additions and 94 deletions

View File

@ -111,7 +111,7 @@ export class NgZone {
_pendingTimeouts: number[] = [];
/**
* @private
* @internal
* @param {bool} enableLongStackTrace whether to enable long stack trace. They should only be
* enabled in development mode as they significantly impact perf.
*/
@ -136,7 +136,7 @@ export class NgZone {
}
/**
* @private <!-- TODO: refactor to make TS private -->
* @internal <!-- TODO: refactor to make TS private -->
*
* Sets the zone hook that is called just before a browser task that is handled by Angular
* executes.
@ -150,7 +150,7 @@ export class NgZone {
}
/**
* @private <!-- TODO: refactor to make TS private -->
* @internal <!-- TODO: refactor to make TS private -->
*
* Sets the zone hook that is called immediately after Angular zone is done processing the current
* task and any microtasks scheduled from that task.
@ -166,7 +166,7 @@ export class NgZone {
}
/**
* @private <!-- TODO: refactor to make TS private -->
* @internal <!-- TODO: refactor to make TS private -->
*
* Sets the zone hook that is called immediately after the `onTurnDone` callback is called and any
* microstasks scheduled from within that callback are drained.
@ -192,7 +192,7 @@ export class NgZone {
}
/**
* @private <!-- TODO: refactor to make TS private -->
* @internal <!-- TODO: refactor to make TS private -->
*
* Sets the zone hook that is called when an error is thrown in the Angular zone.
*