| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553 |
- /**
- * @license Angular v8.1.0
- * (c) 2010-2019 Google LLC. https://angular.io/
- * License: MIT
- */
- (function (global, factory) {
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/compiler'), require('@angular/core'), require('@angular/common'), require('@angular/platform-browser')) :
- typeof define === 'function' && define.amd ? define('@angular/platform-browser-dynamic', ['exports', '@angular/compiler', '@angular/core', '@angular/common', '@angular/platform-browser'], factory) :
- (global = global || self, factory((global.ng = global.ng || {}, global.ng.platformBrowserDynamic = {}), global.ng.compiler, global.ng.core, global.ng.common, global.ng.platformBrowser));
- }(this, function (exports, compiler, core, common, platformBrowser) { 'use strict';
- /*! *****************************************************************************
- Copyright (c) Microsoft Corporation. All rights reserved.
- Licensed under the Apache License, Version 2.0 (the "License"); you may not use
- this file except in compliance with the License. You may obtain a copy of the
- License at http://www.apache.org/licenses/LICENSE-2.0
- THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
- WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
- MERCHANTABLITY OR NON-INFRINGEMENT.
- See the Apache Version 2.0 License for specific language governing permissions
- and limitations under the License.
- ***************************************************************************** */
- /* global Reflect, Promise */
- var extendStatics = function(d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- function __extends(d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- }
- function __decorate(decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- }
- function __read(o, n) {
- var m = typeof Symbol === "function" && o[Symbol.iterator];
- if (!m) return o;
- var i = m.call(o), r, ar = [], e;
- try {
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
- }
- catch (error) { e = { error: error }; }
- finally {
- try {
- if (r && !r.done && (m = i["return"])) m.call(i);
- }
- finally { if (e) throw e.error; }
- }
- return ar;
- }
- function __spread() {
- for (var ar = [], i = 0; i < arguments.length; i++)
- ar = ar.concat(__read(arguments[i]));
- return ar;
- }
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- var MODULE_SUFFIX = '';
- var builtinExternalReferences = createBuiltinExternalReferencesMap();
- var JitReflector = /** @class */ (function () {
- function JitReflector() {
- this.reflectionCapabilities = new core.ɵReflectionCapabilities();
- }
- JitReflector.prototype.componentModuleUrl = function (type, cmpMetadata) {
- var moduleId = cmpMetadata.moduleId;
- if (typeof moduleId === 'string') {
- var scheme = compiler.getUrlScheme(moduleId);
- return scheme ? moduleId : "package:" + moduleId + MODULE_SUFFIX;
- }
- else if (moduleId !== null && moduleId !== void 0) {
- throw compiler.syntaxError("moduleId should be a string in \"" + core.ɵstringify(type) + "\". See https://goo.gl/wIDDiL for more information.\n" +
- "If you're using Webpack you should inline the template and the styles, see https://goo.gl/X2J8zc.");
- }
- return "./" + core.ɵstringify(type);
- };
- JitReflector.prototype.parameters = function (typeOrFunc) {
- return this.reflectionCapabilities.parameters(typeOrFunc);
- };
- JitReflector.prototype.tryAnnotations = function (typeOrFunc) { return this.annotations(typeOrFunc); };
- JitReflector.prototype.annotations = function (typeOrFunc) {
- return this.reflectionCapabilities.annotations(typeOrFunc);
- };
- JitReflector.prototype.shallowAnnotations = function (typeOrFunc) {
- throw new Error('Not supported in JIT mode');
- };
- JitReflector.prototype.propMetadata = function (typeOrFunc) {
- return this.reflectionCapabilities.propMetadata(typeOrFunc);
- };
- JitReflector.prototype.hasLifecycleHook = function (type, lcProperty) {
- return this.reflectionCapabilities.hasLifecycleHook(type, lcProperty);
- };
- JitReflector.prototype.guards = function (type) { return this.reflectionCapabilities.guards(type); };
- JitReflector.prototype.resolveExternalReference = function (ref) {
- return builtinExternalReferences.get(ref) || ref.runtime;
- };
- return JitReflector;
- }());
- function createBuiltinExternalReferencesMap() {
- var map = new Map();
- map.set(compiler.Identifiers.ANALYZE_FOR_ENTRY_COMPONENTS, core.ANALYZE_FOR_ENTRY_COMPONENTS);
- map.set(compiler.Identifiers.ElementRef, core.ElementRef);
- map.set(compiler.Identifiers.NgModuleRef, core.NgModuleRef);
- map.set(compiler.Identifiers.ViewContainerRef, core.ViewContainerRef);
- map.set(compiler.Identifiers.ChangeDetectorRef, core.ChangeDetectorRef);
- map.set(compiler.Identifiers.Renderer2, core.Renderer2);
- map.set(compiler.Identifiers.QueryList, core.QueryList);
- map.set(compiler.Identifiers.TemplateRef, core.TemplateRef);
- map.set(compiler.Identifiers.CodegenComponentFactoryResolver, core.ɵCodegenComponentFactoryResolver);
- map.set(compiler.Identifiers.ComponentFactoryResolver, core.ComponentFactoryResolver);
- map.set(compiler.Identifiers.ComponentFactory, core.ComponentFactory);
- map.set(compiler.Identifiers.ComponentRef, core.ComponentRef);
- map.set(compiler.Identifiers.NgModuleFactory, core.NgModuleFactory);
- map.set(compiler.Identifiers.createModuleFactory, core.ɵcmf);
- map.set(compiler.Identifiers.moduleDef, core.ɵmod);
- map.set(compiler.Identifiers.moduleProviderDef, core.ɵmpd);
- map.set(compiler.Identifiers.RegisterModuleFactoryFn, core.ɵregisterModuleFactory);
- map.set(compiler.Identifiers.Injector, core.Injector);
- map.set(compiler.Identifiers.ViewEncapsulation, core.ViewEncapsulation);
- map.set(compiler.Identifiers.ChangeDetectionStrategy, core.ChangeDetectionStrategy);
- map.set(compiler.Identifiers.SecurityContext, core.SecurityContext);
- map.set(compiler.Identifiers.LOCALE_ID, core.LOCALE_ID);
- map.set(compiler.Identifiers.TRANSLATIONS_FORMAT, core.TRANSLATIONS_FORMAT);
- map.set(compiler.Identifiers.inlineInterpolate, core.ɵinlineInterpolate);
- map.set(compiler.Identifiers.interpolate, core.ɵinterpolate);
- map.set(compiler.Identifiers.EMPTY_ARRAY, core.ɵEMPTY_ARRAY);
- map.set(compiler.Identifiers.EMPTY_MAP, core.ɵEMPTY_MAP);
- map.set(compiler.Identifiers.Renderer, core.Renderer);
- map.set(compiler.Identifiers.viewDef, core.ɵvid);
- map.set(compiler.Identifiers.elementDef, core.ɵeld);
- map.set(compiler.Identifiers.anchorDef, core.ɵand);
- map.set(compiler.Identifiers.textDef, core.ɵted);
- map.set(compiler.Identifiers.directiveDef, core.ɵdid);
- map.set(compiler.Identifiers.providerDef, core.ɵprd);
- map.set(compiler.Identifiers.queryDef, core.ɵqud);
- map.set(compiler.Identifiers.pureArrayDef, core.ɵpad);
- map.set(compiler.Identifiers.pureObjectDef, core.ɵpod);
- map.set(compiler.Identifiers.purePipeDef, core.ɵppd);
- map.set(compiler.Identifiers.pipeDef, core.ɵpid);
- map.set(compiler.Identifiers.nodeValue, core.ɵnov);
- map.set(compiler.Identifiers.ngContentDef, core.ɵncd);
- map.set(compiler.Identifiers.unwrapValue, core.ɵunv);
- map.set(compiler.Identifiers.createRendererType2, core.ɵcrt);
- map.set(compiler.Identifiers.createComponentFactory, core.ɵccf);
- return map;
- }
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- var ERROR_COLLECTOR_TOKEN = new core.InjectionToken('ErrorCollector');
- /**
- * A default provider for {@link PACKAGE_ROOT_URL} that maps to '/'.
- */
- var DEFAULT_PACKAGE_URL_PROVIDER = {
- provide: core.PACKAGE_ROOT_URL,
- useValue: '/'
- };
- var _NO_RESOURCE_LOADER = {
- get: function (url) {
- throw new Error("No ResourceLoader implementation has been provided. Can't read the url \"" + url + "\"");
- }
- };
- var baseHtmlParser = new core.InjectionToken('HtmlParser');
- var CompilerImpl = /** @class */ (function () {
- function CompilerImpl(injector, _metadataResolver, templateParser, styleCompiler, viewCompiler, ngModuleCompiler, summaryResolver, compileReflector, jitEvaluator, compilerConfig, console) {
- this._metadataResolver = _metadataResolver;
- this._delegate = new compiler.JitCompiler(_metadataResolver, templateParser, styleCompiler, viewCompiler, ngModuleCompiler, summaryResolver, compileReflector, jitEvaluator, compilerConfig, console, this.getExtraNgModuleProviders.bind(this));
- this.injector = injector;
- }
- CompilerImpl.prototype.getExtraNgModuleProviders = function () {
- return [this._metadataResolver.getProviderMetadata(new compiler.ProviderMeta(core.Compiler, { useValue: this }))];
- };
- CompilerImpl.prototype.compileModuleSync = function (moduleType) {
- return this._delegate.compileModuleSync(moduleType);
- };
- CompilerImpl.prototype.compileModuleAsync = function (moduleType) {
- return this._delegate.compileModuleAsync(moduleType);
- };
- CompilerImpl.prototype.compileModuleAndAllComponentsSync = function (moduleType) {
- var result = this._delegate.compileModuleAndAllComponentsSync(moduleType);
- return {
- ngModuleFactory: result.ngModuleFactory,
- componentFactories: result.componentFactories,
- };
- };
- CompilerImpl.prototype.compileModuleAndAllComponentsAsync = function (moduleType) {
- return this._delegate.compileModuleAndAllComponentsAsync(moduleType)
- .then(function (result) { return ({
- ngModuleFactory: result.ngModuleFactory,
- componentFactories: result.componentFactories,
- }); });
- };
- CompilerImpl.prototype.loadAotSummaries = function (summaries) { this._delegate.loadAotSummaries(summaries); };
- CompilerImpl.prototype.hasAotSummary = function (ref) { return this._delegate.hasAotSummary(ref); };
- CompilerImpl.prototype.getComponentFactory = function (component) {
- return this._delegate.getComponentFactory(component);
- };
- CompilerImpl.prototype.clearCache = function () { this._delegate.clearCache(); };
- CompilerImpl.prototype.clearCacheFor = function (type) { this._delegate.clearCacheFor(type); };
- CompilerImpl.prototype.getModuleId = function (moduleType) {
- var meta = this._metadataResolver.getNgModuleMetadata(moduleType);
- return meta && meta.id || undefined;
- };
- return CompilerImpl;
- }());
- /**
- * A set of providers that provide `JitCompiler` and its dependencies to use for
- * template compilation.
- */
- var COMPILER_PROVIDERS = [
- { provide: compiler.CompileReflector, useValue: new JitReflector() },
- { provide: compiler.ResourceLoader, useValue: _NO_RESOURCE_LOADER },
- { provide: compiler.JitSummaryResolver, deps: [] },
- { provide: compiler.SummaryResolver, useExisting: compiler.JitSummaryResolver },
- { provide: core.ɵConsole, deps: [] },
- { provide: compiler.Lexer, deps: [] },
- { provide: compiler.Parser, deps: [compiler.Lexer] },
- {
- provide: baseHtmlParser,
- useClass: compiler.HtmlParser,
- deps: [],
- },
- {
- provide: compiler.I18NHtmlParser,
- useFactory: function (parser, translations, format, config, console) {
- translations = translations || '';
- var missingTranslation = translations ? config.missingTranslation : core.MissingTranslationStrategy.Ignore;
- return new compiler.I18NHtmlParser(parser, translations, format, missingTranslation, console);
- },
- deps: [
- baseHtmlParser,
- [new core.Optional(), new core.Inject(core.TRANSLATIONS)],
- [new core.Optional(), new core.Inject(core.TRANSLATIONS_FORMAT)],
- [compiler.CompilerConfig],
- [core.ɵConsole],
- ]
- },
- {
- provide: compiler.HtmlParser,
- useExisting: compiler.I18NHtmlParser,
- },
- {
- provide: compiler.TemplateParser, deps: [compiler.CompilerConfig, compiler.CompileReflector,
- compiler.Parser, compiler.ElementSchemaRegistry,
- compiler.I18NHtmlParser, core.ɵConsole]
- },
- { provide: compiler.JitEvaluator, useClass: compiler.JitEvaluator, deps: [] },
- { provide: compiler.DirectiveNormalizer, deps: [compiler.ResourceLoader, compiler.UrlResolver, compiler.HtmlParser, compiler.CompilerConfig] },
- { provide: compiler.CompileMetadataResolver, deps: [compiler.CompilerConfig, compiler.HtmlParser, compiler.NgModuleResolver,
- compiler.DirectiveResolver, compiler.PipeResolver,
- compiler.SummaryResolver,
- compiler.ElementSchemaRegistry,
- compiler.DirectiveNormalizer, core.ɵConsole,
- [core.Optional, compiler.StaticSymbolCache],
- compiler.CompileReflector,
- [core.Optional, ERROR_COLLECTOR_TOKEN]] },
- DEFAULT_PACKAGE_URL_PROVIDER,
- { provide: compiler.StyleCompiler, deps: [compiler.UrlResolver] },
- { provide: compiler.ViewCompiler, deps: [compiler.CompileReflector] },
- { provide: compiler.NgModuleCompiler, deps: [compiler.CompileReflector] },
- { provide: compiler.CompilerConfig, useValue: new compiler.CompilerConfig() },
- { provide: core.Compiler, useClass: CompilerImpl, deps: [core.Injector, compiler.CompileMetadataResolver,
- compiler.TemplateParser, compiler.StyleCompiler,
- compiler.ViewCompiler, compiler.NgModuleCompiler,
- compiler.SummaryResolver, compiler.CompileReflector, compiler.JitEvaluator, compiler.CompilerConfig,
- core.ɵConsole] },
- { provide: compiler.DomElementSchemaRegistry, deps: [] },
- { provide: compiler.ElementSchemaRegistry, useExisting: compiler.DomElementSchemaRegistry },
- { provide: compiler.UrlResolver, deps: [core.PACKAGE_ROOT_URL] },
- { provide: compiler.DirectiveResolver, deps: [compiler.CompileReflector] },
- { provide: compiler.PipeResolver, deps: [compiler.CompileReflector] },
- { provide: compiler.NgModuleResolver, deps: [compiler.CompileReflector] },
- ];
- /**
- * @publicApi
- */
- var JitCompilerFactory = /** @class */ (function () {
- /* @internal */
- function JitCompilerFactory(defaultOptions) {
- var compilerOptions = {
- useJit: true,
- defaultEncapsulation: core.ViewEncapsulation.Emulated,
- missingTranslation: core.MissingTranslationStrategy.Warning,
- };
- this._defaultOptions = __spread([compilerOptions], defaultOptions);
- }
- JitCompilerFactory.prototype.createCompiler = function (options) {
- if (options === void 0) { options = []; }
- var opts = _mergeOptions(this._defaultOptions.concat(options));
- var injector = core.Injector.create([
- COMPILER_PROVIDERS, {
- provide: compiler.CompilerConfig,
- useFactory: function () {
- return new compiler.CompilerConfig({
- // let explicit values from the compiler options overwrite options
- // from the app providers
- useJit: opts.useJit,
- jitDevMode: core.isDevMode(),
- // let explicit values from the compiler options overwrite options
- // from the app providers
- defaultEncapsulation: opts.defaultEncapsulation,
- missingTranslation: opts.missingTranslation,
- preserveWhitespaces: opts.preserveWhitespaces,
- });
- },
- deps: []
- },
- opts.providers
- ]);
- return injector.get(core.Compiler);
- };
- return JitCompilerFactory;
- }());
- function _mergeOptions(optionsArr) {
- return {
- useJit: _lastDefined(optionsArr.map(function (options) { return options.useJit; })),
- defaultEncapsulation: _lastDefined(optionsArr.map(function (options) { return options.defaultEncapsulation; })),
- providers: _mergeArrays(optionsArr.map(function (options) { return options.providers; })),
- missingTranslation: _lastDefined(optionsArr.map(function (options) { return options.missingTranslation; })),
- preserveWhitespaces: _lastDefined(optionsArr.map(function (options) { return options.preserveWhitespaces; })),
- };
- }
- function _lastDefined(args) {
- for (var i = args.length - 1; i >= 0; i--) {
- if (args[i] !== undefined) {
- return args[i];
- }
- }
- return undefined;
- }
- function _mergeArrays(parts) {
- var result = [];
- parts.forEach(function (part) { return part && result.push.apply(result, __spread(part)); });
- return result;
- }
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- var ɵ0 = {};
- /**
- * A platform that included corePlatform and the compiler.
- *
- * @publicApi
- */
- var platformCoreDynamic = core.createPlatformFactory(core.platformCore, 'coreDynamic', [
- { provide: core.COMPILER_OPTIONS, useValue: ɵ0, multi: true },
- { provide: core.CompilerFactory, useClass: JitCompilerFactory, deps: [core.COMPILER_OPTIONS] },
- ]);
- var ResourceLoaderImpl = /** @class */ (function (_super) {
- __extends(ResourceLoaderImpl, _super);
- function ResourceLoaderImpl() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- ResourceLoaderImpl.prototype.get = function (url) {
- var resolve;
- var reject;
- var promise = new Promise(function (res, rej) {
- resolve = res;
- reject = rej;
- });
- var xhr = new XMLHttpRequest();
- xhr.open('GET', url, true);
- xhr.responseType = 'text';
- xhr.onload = function () {
- // responseText is the old-school way of retrieving response (supported by IE8 & 9)
- // response/responseType properties were introduced in ResourceLoader Level2 spec (supported
- // by IE10)
- var response = xhr.response || xhr.responseText;
- // normalize IE9 bug (http://bugs.jquery.com/ticket/1450)
- var status = xhr.status === 1223 ? 204 : xhr.status;
- // fix status code when it is 0 (0 status is undocumented).
- // Occurs when accessing file resources or on Android 4.1 stock browser
- // while retrieving files from application cache.
- if (status === 0) {
- status = response ? 200 : 0;
- }
- if (200 <= status && status <= 300) {
- resolve(response);
- }
- else {
- reject("Failed to load " + url);
- }
- };
- xhr.onerror = function () { reject("Failed to load " + url); };
- xhr.send();
- return promise;
- };
- ResourceLoaderImpl = __decorate([
- core.Injectable()
- ], ResourceLoaderImpl);
- return ResourceLoaderImpl;
- }(compiler.ResourceLoader));
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- var ɵ0$1 = { providers: [{ provide: compiler.ResourceLoader, useClass: ResourceLoaderImpl, deps: [] }] }, ɵ1 = common.ɵPLATFORM_BROWSER_ID;
- /**
- * @publicApi
- */
- var INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS = [
- platformBrowser.ɵINTERNAL_BROWSER_PLATFORM_PROVIDERS,
- {
- provide: core.COMPILER_OPTIONS,
- useValue: ɵ0$1,
- multi: true
- },
- { provide: core.PLATFORM_ID, useValue: ɵ1 },
- ];
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * An implementation of ResourceLoader that uses a template cache to avoid doing an actual
- * ResourceLoader.
- *
- * The template cache needs to be built and loaded into window.$templateCache
- * via a separate mechanism.
- *
- * @publicApi
- */
- var CachedResourceLoader = /** @class */ (function (_super) {
- __extends(CachedResourceLoader, _super);
- function CachedResourceLoader() {
- var _this = _super.call(this) || this;
- _this._cache = core.ɵglobal.$templateCache;
- if (_this._cache == null) {
- throw new Error('CachedResourceLoader: Template cache was not found in $templateCache.');
- }
- return _this;
- }
- CachedResourceLoader.prototype.get = function (url) {
- if (this._cache.hasOwnProperty(url)) {
- return Promise.resolve(this._cache[url]);
- }
- else {
- return Promise.reject('CachedResourceLoader: Did not find cached template for ' + url);
- }
- };
- return CachedResourceLoader;
- }(compiler.ResourceLoader));
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * @publicApi
- */
- var VERSION = new core.Version('8.1.0');
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * @publicApi
- */
- var RESOURCE_CACHE_PROVIDER = [{ provide: compiler.ResourceLoader, useClass: CachedResourceLoader, deps: [] }];
- /**
- * @publicApi
- */
- var platformBrowserDynamic = core.createPlatformFactory(platformCoreDynamic, 'browserDynamic', INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS);
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- // This file only reexports content of the `src` folder. Keep it that way.
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- /**
- * Generated bundle index. Do not edit.
- */
- exports.ɵangular_packages_platform_browser_dynamic_platform_browser_dynamic_a = CachedResourceLoader;
- exports.RESOURCE_CACHE_PROVIDER = RESOURCE_CACHE_PROVIDER;
- exports.platformBrowserDynamic = platformBrowserDynamic;
- exports.VERSION = VERSION;
- exports.JitCompilerFactory = JitCompilerFactory;
- exports.ɵCompilerImpl = CompilerImpl;
- exports.ɵplatformCoreDynamic = platformCoreDynamic;
- exports.ɵINTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS = INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS;
- exports.ɵResourceLoaderImpl = ResourceLoaderImpl;
- Object.defineProperty(exports, '__esModule', { value: true });
- }));
- //# sourceMappingURL=platform-browser-dynamic.umd.js.map
|