chore: clang-reformat

This commit is contained in:
Misko Hevery
2016-05-01 22:50:37 -07:00
parent bb8976608d
commit 3e17c99f4e
108 changed files with 1120 additions and 1129 deletions

View File

@ -1,12 +1,5 @@
import {NgZone, NgZoneError} from './zone/ng_zone';
import {
Type,
isBlank,
isPresent,
assertionsEnabled,
lockMode,
isPromise
} from '../src/facade/lang';
import {Type, isBlank, isPresent, assertionsEnabled, lockMode, isPromise} from '../src/facade/lang';
import {Injector, Injectable} from './di';
import {PLATFORM_INITIALIZER, APP_INITIALIZER} from './application_tokens';
import {PromiseWrapper, ObservableWrapper} from '../src/facade/async';
@ -14,11 +7,7 @@ import {ListWrapper} from '../src/facade/collection';
import {TestabilityRegistry, Testability} from './testability/testability';
import {ComponentResolver} from './linker/component_resolver';
import {ComponentRef, ComponentFactory} from './linker/component_factory';
import {
BaseException,
ExceptionHandler,
unimplemented
} from '../src/facade/exceptions';
import {BaseException, ExceptionHandler, unimplemented} from '../src/facade/exceptions';
import {Console} from './console';
import {wtfLeave, wtfCreateScope, WtfScopeFn} from './profile/profile';
import {ChangeDetectorRef} from './change_detection/change_detector_ref';

View File

@ -1,8 +1,5 @@
import {looseIdentical, isPrimitive} from '../../src/facade/lang';
import {
isListLikeIterable,
areIterablesEqual
} from '../../src/facade/collection';
import {isListLikeIterable, areIterablesEqual} from '../../src/facade/collection';
export {looseIdentical} from '../../src/facade/lang';
export var uninitialized: Object = /*@ts2dart_const*/ new Object();

View File

@ -1,10 +1,5 @@
import {isPresent} from '../../src/facade/lang';
import {
Renderer,
RootRenderer,
RenderComponentType,
RenderDebugInfo
} from '../render/api';
import {Renderer, RootRenderer, RenderComponentType, RenderDebugInfo} from '../render/api';
import {
DebugNode,
DebugElement,

View File

@ -1,11 +1,4 @@
import {
normalizeBool,
Type,
isType,
isBlank,
isFunction,
stringify
} from '../../src/facade/lang';
import {normalizeBool, Type, isType, isBlank, isFunction, stringify} from '../../src/facade/lang';
import {BaseException} from '../../src/facade/exceptions';
/**

View File

@ -1,8 +1,4 @@
import {
isBlank,
isPresent,
looseIdentical
} from '../../src/facade/lang';
import {isBlank, isPresent, looseIdentical} from '../../src/facade/lang';
import {ListWrapper, StringMapWrapper} from '../../src/facade/collection';
import {BaseException} from '../../src/facade/exceptions';
import {AppElement} from './element';

View File

@ -1,11 +1,4 @@
import {
Type,
isPresent,
isFunction,
global,
stringify,
ConcreteType
} from '../../src/facade/lang';
import {Type, isPresent, isFunction, global, stringify, ConcreteType} from '../../src/facade/lang';
import {BaseException} from '../../src/facade/exceptions';
import {GetterFn, SetterFn, MethodFn} from './types';
import {PlatformReflectionCapabilities} from './platform_reflection_capabilities';