UNPKG

2.01 kBSource Map (JSON)View Raw
1{"version":3,"file":"platform_core_providers.js","sourceRoot":"","sources":["../../../../modules/@angular/core/src/platform_core_providers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;OAEI,EAAC,WAAW,EAAE,YAAY,EAAE,qBAAqB,EAAC,MAAM,mBAAmB;OAC3E,EAAC,OAAO,EAAC,MAAM,WAAW;OAE1B,EAAC,SAAS,EAAE,SAAS,EAAC,MAAM,yBAAyB;OACrD,EAAC,eAAe,EAAC,MAAM,+BAA+B;OACtD,EAAC,mBAAmB,EAAC,MAAM,2BAA2B;AAC7D;;GAEG;AACH;IACE,MAAM,CAAC,SAAS,CAAC;AACnB,CAAC;AAED,IAAM,gBAAgB,CAAC,wBAAwB,GAAe;IAC5D,YAAY;IACZ,EAAC,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,YAAY,EAAC;IACjD,EAAC,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,UAAU,EAAE,IAAI,EAAE,EAAE,EAAC;IACtD,EAAC,OAAO,EAAE,eAAe,EAAE,WAAW,EAAE,SAAS,EAAC;IAClD,mBAAmB;IACnB,OAAO;CACR,CAAC;AAEF;;;;GAIG;AACH,OAAO,IAAM,gBAAgB,CAAC,YAAY,GAAG,qBAAqB,CAAC,IAAI,EAAE,MAAM,EAAE,wBAAwB,CAAC,CAAC","sourcesContent":["/**\n * @license\n * Copyright Google Inc. All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nimport {PlatformRef, PlatformRef_, createPlatformFactory} from './application_ref';\nimport {Console} from './console';\nimport {Provider} from './di';\nimport {Reflector, reflector} from './reflection/reflection';\nimport {ReflectorReader} from './reflection/reflector_reader';\nimport {TestabilityRegistry} from './testability/testability';\n/**\n * @return {?}\n */\nfunction _reflector(): Reflector {\n return reflector;\n}\n\nconst /** @type {?} */ _CORE_PLATFORM_PROVIDERS: Provider[] = [\n PlatformRef_,\n {provide: PlatformRef, useExisting: PlatformRef_},\n {provide: Reflector, useFactory: _reflector, deps: []},\n {provide: ReflectorReader, useExisting: Reflector},\n TestabilityRegistry,\n Console,\n];\n\n/**\n * This platform has to be included in any other platform\n *\n * @experimental\n */\nexport const /** @type {?} */ platformCore = createPlatformFactory(null, 'core', _CORE_PLATFORM_PROVIDERS);\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}
\No newline at end of file