| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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
 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-05-30 20:49:44 +01:00
										 |  |  | import {fromObject} from 'convert-source-map'; | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  | import MagicString from 'magic-string'; | 
					
						
							| 
									
										
										
										
											2020-05-30 20:49:44 +01:00
										 |  |  | import {encode} from 'sourcemap-codec'; | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  | import * as ts from 'typescript'; | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  | import {absoluteFrom, getFileSystem} from '../../../src/ngtsc/file_system'; | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  | import {runInEachFileSystem, TestFile} from '../../../src/ngtsc/file_system/testing'; | 
					
						
							| 
									
										
										
										
											2019-10-14 13:04:42 -07:00
										 |  |  | import {Reexport} from '../../../src/ngtsc/imports'; | 
					
						
							| 
									
										
										
										
											2020-05-14 20:06:12 +01:00
										 |  |  | import {MockLogger} from '../../../src/ngtsc/logging/testing'; | 
					
						
							| 
									
										
										
										
											2020-11-04 12:27:19 -08:00
										 |  |  | import {loadTestFiles} from '../../../src/ngtsc/testing'; | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  | import {Import, ImportManager} from '../../../src/ngtsc/translator'; | 
					
						
							| 
									
										
										
										
											2019-07-18 21:05:32 +01:00
										 |  |  | import {DecorationAnalyzer} from '../../src/analysis/decoration_analyzer'; | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  | import {ModuleWithProvidersAnalyzer, ModuleWithProvidersInfo} from '../../src/analysis/module_with_providers_analyzer'; | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  | import {NgccReferencesRegistry} from '../../src/analysis/ngcc_references_registry'; | 
					
						
							|  |  |  | import {ExportInfo, PrivateDeclarationsAnalyzer} from '../../src/analysis/private_declarations_analyzer'; | 
					
						
							|  |  |  | import {CompiledClass} from '../../src/analysis/types'; | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  | import {Esm2015ReflectionHost} from '../../src/host/esm2015_host'; | 
					
						
							|  |  |  | import {DtsRenderer} from '../../src/rendering/dts_renderer'; | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  | import {RedundantDecoratorMap, RenderingFormatter} from '../../src/rendering/rendering_formatter'; | 
					
						
							|  |  |  | import {getRootFiles, makeTestEntryPointBundle} from '../helpers/utils'; | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | class TestRenderingFormatter implements RenderingFormatter { | 
					
						
							|  |  |  |   addImports(output: MagicString, imports: Import[], sf: ts.SourceFile) { | 
					
						
							|  |  |  |     output.prepend('\n// ADD IMPORTS\n'); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   addExports(output: MagicString, baseEntryPointPath: string, exports: ExportInfo[]) { | 
					
						
							|  |  |  |     output.prepend('\n// ADD EXPORTS\n'); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-10-14 13:04:42 -07:00
										 |  |  |   addDirectExports(output: MagicString, exports: Reexport[]) { | 
					
						
							|  |  |  |     output.prepend('\n// ADD DIRECT EXPORTS\n'); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  |   addConstants(output: MagicString, constants: string, file: ts.SourceFile): void { | 
					
						
							|  |  |  |     output.prepend('\n// ADD CONSTANTS\n'); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   addDefinitions(output: MagicString, compiledClass: CompiledClass, definitions: string) { | 
					
						
							|  |  |  |     output.prepend('\n// ADD DEFINITIONS\n'); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-11-06 17:03:56 +00:00
										 |  |  |   addAdjacentStatements(output: MagicString, compiledClass: CompiledClass, statements: string) { | 
					
						
							|  |  |  |     output.prepend('\n// ADD ADJACENT STATEMENTS\n'); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  |   removeDecorators(output: MagicString, decoratorsToRemove: RedundantDecoratorMap) { | 
					
						
							|  |  |  |     output.prepend('\n// REMOVE DECORATORS\n'); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   rewriteSwitchableDeclarations(output: MagicString, sourceFile: ts.SourceFile): void { | 
					
						
							|  |  |  |     output.prepend('\n// REWRITTEN DECLARATIONS\n'); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   addModuleWithProvidersParams( | 
					
						
							|  |  |  |       output: MagicString, moduleWithProviders: ModuleWithProvidersInfo[], | 
					
						
							|  |  |  |       importManager: ImportManager): void { | 
					
						
							|  |  |  |     output.prepend('\n// ADD MODUlE WITH PROVIDERS PARAMS\n'); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  |   printStatement(): string { | 
					
						
							|  |  |  |     return 'IGNORED'; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function createTestRenderer( | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  |     packageName: string, files: TestFile[], dtsFiles?: TestFile[], mappingFiles?: TestFile[]) { | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  |   const logger = new MockLogger(); | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  |   loadTestFiles(files); | 
					
						
							|  |  |  |   if (dtsFiles) { | 
					
						
							|  |  |  |     loadTestFiles(dtsFiles); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   if (mappingFiles) { | 
					
						
							|  |  |  |     loadTestFiles(mappingFiles); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   const fs = getFileSystem(); | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  |   const isCore = packageName === '@angular/core'; | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  |   const bundle = makeTestEntryPointBundle( | 
					
						
							| 
									
										
										
										
											2019-08-08 02:19:52 +03:00
										 |  |  |       'test-package', 'esm2015', isCore, getRootFiles(files), dtsFiles && getRootFiles(dtsFiles)); | 
					
						
							| 
									
										
										
										
											2019-12-18 14:03:04 +00:00
										 |  |  |   const host = new Esm2015ReflectionHost(logger, isCore, bundle.src, bundle.dts); | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  |   const referencesRegistry = new NgccReferencesRegistry(host); | 
					
						
							| 
									
										
										
										
											2019-05-25 20:53:52 +01:00
										 |  |  |   const decorationAnalyses = | 
					
						
							|  |  |  |       new DecorationAnalyzer(fs, bundle, host, referencesRegistry).analyzeProgram(); | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  |   const moduleWithProvidersAnalyses = | 
					
						
							| 
									
										
										
										
											2020-05-06 11:02:54 +01:00
										 |  |  |       new ModuleWithProvidersAnalyzer( | 
					
						
							|  |  |  |           host, bundle.src.program.getTypeChecker(), referencesRegistry, true) | 
					
						
							| 
									
										
										
										
											2019-11-16 21:12:58 +01:00
										 |  |  |           .analyzeProgram(bundle.src.program); | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  |   const privateDeclarationsAnalyses = | 
					
						
							|  |  |  |       new PrivateDeclarationsAnalyzer(host, referencesRegistry).analyzeProgram(bundle.src.program); | 
					
						
							|  |  |  |   const testFormatter = new TestRenderingFormatter(); | 
					
						
							|  |  |  |   spyOn(testFormatter, 'addExports').and.callThrough(); | 
					
						
							|  |  |  |   spyOn(testFormatter, 'addImports').and.callThrough(); | 
					
						
							|  |  |  |   spyOn(testFormatter, 'addDefinitions').and.callThrough(); | 
					
						
							| 
									
										
										
										
											2019-11-06 17:03:56 +00:00
										 |  |  |   spyOn(testFormatter, 'addAdjacentStatements').and.callThrough(); | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  |   spyOn(testFormatter, 'addConstants').and.callThrough(); | 
					
						
							|  |  |  |   spyOn(testFormatter, 'removeDecorators').and.callThrough(); | 
					
						
							|  |  |  |   spyOn(testFormatter, 'rewriteSwitchableDeclarations').and.callThrough(); | 
					
						
							|  |  |  |   spyOn(testFormatter, 'addModuleWithProvidersParams').and.callThrough(); | 
					
						
							| 
									
										
										
										
											2019-11-04 19:29:01 +02:00
										 |  |  |   spyOn(testFormatter, 'printStatement').and.callThrough(); | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-25 20:38:33 +01:00
										 |  |  |   const renderer = new DtsRenderer(testFormatter, fs, logger, host, bundle); | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  |   return { | 
					
						
							|  |  |  |     renderer, | 
					
						
							|  |  |  |     testFormatter, | 
					
						
							|  |  |  |     decorationAnalyses, | 
					
						
							|  |  |  |     moduleWithProvidersAnalyses, | 
					
						
							|  |  |  |     privateDeclarationsAnalyses, | 
					
						
							|  |  |  |     bundle | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  | runInEachFileSystem(() => { | 
					
						
							|  |  |  |   describe('DtsRenderer', () => { | 
					
						
							|  |  |  |     let _: typeof absoluteFrom; | 
					
						
							|  |  |  |     let INPUT_PROGRAM: TestFile; | 
					
						
							|  |  |  |     let INPUT_DTS_PROGRAM: TestFile; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       _ = absoluteFrom; | 
					
						
							|  |  |  |       INPUT_PROGRAM = { | 
					
						
							| 
									
										
										
										
											2019-05-25 21:34:40 +01:00
										 |  |  |         name: _('/node_modules/test-package/src/file.js'), | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  |         contents: | 
					
						
							|  |  |  |             `import { Directive } from '@angular/core';\nexport class A {\n    foo(x) {\n        return x;\n    }\n}\nA.decorators = [\n    { type: Directive, args: [{ selector: '[a]' }] }\n];\n` | 
					
						
							|  |  |  |       }; | 
					
						
							|  |  |  |       INPUT_DTS_PROGRAM = { | 
					
						
							| 
									
										
										
										
											2019-12-18 14:03:05 +00:00
										 |  |  |         name: _('/node_modules/test-package/typings/file.d.ts'), | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  |         contents: `export declare class A {\nfoo(x: number): number;\n}\n` | 
					
						
							|  |  |  |       }; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should render extract types into typings files', () => { | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  |       const { | 
					
						
							|  |  |  |         renderer, | 
					
						
							|  |  |  |         decorationAnalyses, | 
					
						
							|  |  |  |         privateDeclarationsAnalyses, | 
					
						
							|  |  |  |         moduleWithProvidersAnalyses | 
					
						
							|  |  |  |       } = createTestRenderer('test-package', [INPUT_PROGRAM], [INPUT_DTS_PROGRAM]); | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  |       const result = renderer.renderProgram( | 
					
						
							|  |  |  |           decorationAnalyses, privateDeclarationsAnalyses, moduleWithProvidersAnalyses); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-18 14:03:05 +00:00
										 |  |  |       const typingsFile = | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  |           result.find(f => f.path === _('/node_modules/test-package/typings/file.d.ts'))!; | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  |       expect(typingsFile.contents) | 
					
						
							|  |  |  |           .toContain( | 
					
						
							| 
									
										
										
										
											2021-03-08 15:53:44 +00:00
										 |  |  |               'foo(x: number): number;\n    static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<A, never>;\n    static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration'); | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should render imports into typings files', () => { | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  |       const { | 
					
						
							|  |  |  |         renderer, | 
					
						
							|  |  |  |         decorationAnalyses, | 
					
						
							|  |  |  |         privateDeclarationsAnalyses, | 
					
						
							|  |  |  |         moduleWithProvidersAnalyses | 
					
						
							|  |  |  |       } = createTestRenderer('test-package', [INPUT_PROGRAM], [INPUT_DTS_PROGRAM]); | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  |       const result = renderer.renderProgram( | 
					
						
							|  |  |  |           decorationAnalyses, privateDeclarationsAnalyses, moduleWithProvidersAnalyses); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-18 14:03:05 +00:00
										 |  |  |       const typingsFile = | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  |           result.find(f => f.path === _('/node_modules/test-package/typings/file.d.ts'))!; | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  |       expect(typingsFile.contents).toContain(`\n// ADD IMPORTS\n`); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should render exports into typings files', () => { | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  |       const { | 
					
						
							|  |  |  |         renderer, | 
					
						
							|  |  |  |         decorationAnalyses, | 
					
						
							|  |  |  |         privateDeclarationsAnalyses, | 
					
						
							|  |  |  |         moduleWithProvidersAnalyses | 
					
						
							|  |  |  |       } = createTestRenderer('test-package', [INPUT_PROGRAM], [INPUT_DTS_PROGRAM]); | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |       // Add a mock export to trigger export rendering
 | 
					
						
							| 
									
										
										
										
											2019-05-25 21:34:40 +01:00
										 |  |  |       privateDeclarationsAnalyses.push({ | 
					
						
							|  |  |  |         identifier: 'ComponentB', | 
					
						
							|  |  |  |         from: _('/node_modules/test-package/src/file.js'), | 
					
						
							|  |  |  |         dtsFrom: _('/typings/b.d.ts') | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |       const result = renderer.renderProgram( | 
					
						
							|  |  |  |           decorationAnalyses, privateDeclarationsAnalyses, moduleWithProvidersAnalyses); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-18 14:03:05 +00:00
										 |  |  |       const typingsFile = | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  |           result.find(f => f.path === _('/node_modules/test-package/typings/file.d.ts'))!; | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  |       expect(typingsFile.contents).toContain(`\n// ADD EXPORTS\n`); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should render ModuleWithProviders type params', () => { | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  |       const { | 
					
						
							|  |  |  |         renderer, | 
					
						
							|  |  |  |         decorationAnalyses, | 
					
						
							|  |  |  |         privateDeclarationsAnalyses, | 
					
						
							|  |  |  |         moduleWithProvidersAnalyses | 
					
						
							|  |  |  |       } = createTestRenderer('test-package', [INPUT_PROGRAM], [INPUT_DTS_PROGRAM]); | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |       const result = renderer.renderProgram( | 
					
						
							|  |  |  |           decorationAnalyses, privateDeclarationsAnalyses, moduleWithProvidersAnalyses); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-18 14:03:05 +00:00
										 |  |  |       const typingsFile = | 
					
						
							| 
									
										
										
										
											2020-04-06 08:30:08 +01:00
										 |  |  |           result.find(f => f.path === _('/node_modules/test-package/typings/file.d.ts'))!; | 
					
						
							| 
									
										
										
										
											2019-06-06 20:22:32 +01:00
										 |  |  |       expect(typingsFile.contents).toContain(`\n// ADD MODUlE WITH PROVIDERS PARAMS\n`); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-05-30 20:49:44 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('should render an external source map for files whose original file does not have a source map', | 
					
						
							|  |  |  |        () => { | 
					
						
							|  |  |  |          const { | 
					
						
							|  |  |  |            renderer, | 
					
						
							|  |  |  |            decorationAnalyses, | 
					
						
							|  |  |  |            privateDeclarationsAnalyses, | 
					
						
							|  |  |  |            moduleWithProvidersAnalyses | 
					
						
							|  |  |  |          } = createTestRenderer('test-package', [INPUT_PROGRAM], [INPUT_DTS_PROGRAM]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          const result = renderer.renderProgram( | 
					
						
							|  |  |  |              decorationAnalyses, privateDeclarationsAnalyses, moduleWithProvidersAnalyses); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          const typingsFile = | 
					
						
							|  |  |  |              result.find(f => f.path === _('/node_modules/test-package/typings/file.d.ts'))!; | 
					
						
							|  |  |  |          expect(typingsFile.contents).toContain('//# sourceMappingURL=file.d.ts.map'); | 
					
						
							|  |  |  |        }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should render an internal source map for files whose original file has an internal source map', | 
					
						
							|  |  |  |        () => { | 
					
						
							|  |  |  |          const sourceMap = fromObject({ | 
					
						
							|  |  |  |            'version': 3, | 
					
						
							|  |  |  |            'file': 'file.d.ts', | 
					
						
							|  |  |  |            'sources': ['file.d.ts'], | 
					
						
							|  |  |  |            'names': [], | 
					
						
							|  |  |  |            'mappings': encode([[]]), | 
					
						
							|  |  |  |            'sourcesContent': [INPUT_DTS_PROGRAM.contents], | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  |          INPUT_DTS_PROGRAM.contents += sourceMap.toComment(); | 
					
						
							|  |  |  |          const { | 
					
						
							|  |  |  |            renderer, | 
					
						
							|  |  |  |            decorationAnalyses, | 
					
						
							|  |  |  |            privateDeclarationsAnalyses, | 
					
						
							|  |  |  |            moduleWithProvidersAnalyses | 
					
						
							|  |  |  |          } = createTestRenderer('test-package', [INPUT_PROGRAM], [INPUT_DTS_PROGRAM]); | 
					
						
							|  |  |  |          const result = renderer.renderProgram( | 
					
						
							|  |  |  |              decorationAnalyses, privateDeclarationsAnalyses, moduleWithProvidersAnalyses); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          const typingsFile = | 
					
						
							|  |  |  |              result.find(f => f.path === _('/node_modules/test-package/typings/file.d.ts'))!; | 
					
						
							|  |  |  |          expect(typingsFile.contents).toContain('//# sourceMappingURL=data:application/json'); | 
					
						
							|  |  |  |        }); | 
					
						
							| 
									
										
										
										
											2019-04-28 20:48:35 +01:00
										 |  |  |   }); | 
					
						
							|  |  |  | }); |