style(lint): re-format modules/@angular

This commit is contained in:
Alex Eagle
2016-06-08 16:38:52 -07:00
parent bbed364e7b
commit f39c9c9e75
589 changed files with 21829 additions and 24259 deletions

View File

@ -1,9 +1,12 @@
import {EventEmitter} from '../facade/async';
import {NgZoneImpl, NgZoneError} from './ng_zone_impl';
import {BaseException} from '../facade/exceptions';
import {NgZoneError, NgZoneImpl} from './ng_zone_impl';
export {NgZoneError} from './ng_zone_impl';
/**
* An injectable service for executing work inside or outside of the Angular zone.
*
@ -177,7 +180,7 @@ export class NgZone {
* Notify that an error has been delivered.
*/
get onError(): EventEmitter<any> { return this._onErrorEvents; }
/**
* Whether there are no outstanding microtasks or microtasks.
*/

View File

@ -45,7 +45,7 @@ export class NgZoneImpl {
}
this.inner = this.inner.fork({
name: 'angular',
properties:<any>{'isAngularZone': true},
properties: <any>{'isAngularZone': true},
onInvokeTask: (delegate: ZoneDelegate, current: Zone, target: Zone, task: Task,
applyThis: any, applyArgs: any): any => {
try {