UNPKG

3.31 kBSource Map (JSON)View Raw
1{"version":3,"file":"application_module.js","sourceRoot":"","sources":["../../../../modules/@angular/core/src/application_module.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;OAEI,EAAC,cAAc,EAAC,MAAM,6BAA6B;OACnD,EAAC,qBAAqB,EAAC,MAAM,oBAAoB;OACjD,EAAC,cAAc,EAAE,eAAe,EAAC,MAAM,mBAAmB;OAC1D,EAAC,sBAAsB,EAAC,MAAM,sBAAsB;OACpD,EAAC,eAAe,EAAE,eAAe,EAAE,sBAAsB,EAAE,sBAAsB,EAAC,MAAM,qCAAqC;OAC7H,EAAC,SAAS,EAAC,MAAM,eAAe;OAChC,EAAC,QAAQ,EAAC,MAAM,mBAAmB;OACnC,EAAC,SAAS,EAAC,MAAM,qBAAqB;OACtC,EAAC,QAAQ,EAAC,MAAM,YAAY;AACnC;;GAEG;AACH;IACE,MAAM,CAAC,sBAAsB,CAAC;AAChC,CAAC;AACD;;GAEG;AACH;IACE,MAAM,CAAC,sBAAsB,CAAC;AAChC,CAAC;AACD;;;;GAIG;AACH;IAAA;IAoBA,CAAC;IAnBM,4BAAU,GAA0B;QAC3C,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;oBACvB,SAAS,EAAE;wBACT,eAAe;wBACf,EAAC,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,eAAe,EAAC;wBACvD,qBAAqB;wBACrB,QAAQ;wBACR,sBAAsB;wBACtB,SAAS;wBACT,cAAc;wBACd,EAAC,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,uBAAuB,EAAC;wBAC/D,EAAC,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,uBAAuB,EAAC;wBAC/D,EAAC,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,OAAO,EAAC;qBACxC;iBACF,EAAG,EAAE;KACL,CAAC;IACF,kBAAkB;IACX,gCAAc,GAAmE,cAAM,OAAA,EAC7F,EAD6F,CAC7F,CAAC;IACF,wBAAC;AAAD,CAAC,AApBD,IAoBC;AAED;IACC,gBAAgB;IACjB,iBAAiB,CAAC,UAAU,CAAC;IAC5B;;;OAGG;IACJ,iBAAiB,CAAC,cAAc,CAAC;AACjC,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 {AnimationQueue} from './animation/animation_queue';\nimport {ApplicationInitStatus} from './application_init';\nimport {ApplicationRef, ApplicationRef_} from './application_ref';\nimport {APP_ID_RANDOM_PROVIDER} from './application_tokens';\nimport {IterableDiffers, KeyValueDiffers, defaultIterableDiffers, defaultKeyValueDiffers} from './change_detection/change_detection';\nimport {LOCALE_ID} from './i18n/tokens';\nimport {Compiler} from './linker/compiler';\nimport {ViewUtils} from './linker/view_utils';\nimport {NgModule} from './metadata';\n/**\n * @return {?}\n */\nexport function _iterableDiffersFactory() {\n return defaultIterableDiffers;\n}\n/**\n * @return {?}\n */\nexport function _keyValueDiffersFactory() {\n return defaultKeyValueDiffers;\n}\n/**\n * This module includes the providers of @angular/core that are needed\n * to bootstrap components via `ApplicationRef`.\n * *\n */\nexport class ApplicationModule {\nstatic decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n providers: [\n ApplicationRef_,\n {provide: ApplicationRef, useExisting: ApplicationRef_},\n ApplicationInitStatus,\n Compiler,\n APP_ID_RANDOM_PROVIDER,\n ViewUtils,\n AnimationQueue,\n {provide: IterableDiffers, useFactory: _iterableDiffersFactory},\n {provide: KeyValueDiffers, useFactory: _keyValueDiffersFactory},\n {provide: LOCALE_ID, useValue: 'en-US'},\n ]\n}, ] },\n];\n/** @nocollapse */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ApplicationModule_tsickle_Closure_declarations() {\n /** @type {?} */\nApplicationModule.decorators;\n /**\n * @nocollapse\n * @type {?}\n */\nApplicationModule.ctorParameters;\n}\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"]}
\No newline at end of file