2016-11-15 08:49:23 -08:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2016-12-15 09:12:40 -08:00
|
|
|
import {StaticSymbolResolverHost} from './static_symbol_resolver';
|
2016-11-29 15:36:33 -08:00
|
|
|
import {AotSummaryResolverHost} from './summary_resolver';
|
2016-11-18 08:40:41 -08:00
|
|
|
|
2016-11-15 08:49:23 -08:00
|
|
|
/**
|
|
|
|
* The host of the AotCompiler disconnects the implementation from TypeScript / other language
|
|
|
|
* services and from underlying file systems.
|
|
|
|
*/
|
2016-12-27 09:36:47 -08:00
|
|
|
export interface AotCompilerHost extends StaticSymbolResolverHost, AotSummaryResolverHost {
|
|
|
|
/**
|
|
|
|
* Converts a file path to a module name that can be used as an `import.
|
|
|
|
* I.e. `path/to/importedFile.ts` should be imported by `path/to/containingFile.ts`.
|
|
|
|
*
|
|
|
|
* See ImportResolver.
|
|
|
|
*/
|
|
|
|
fileNameToModuleName(importedFilePath: string, containingFilePath: string): string
|
|
|
|
/*|null*/;
|
|
|
|
|
2016-11-15 11:13:20 -08:00
|
|
|
/**
|
|
|
|
* Loads a resource (e.g. html / css)
|
|
|
|
*/
|
|
|
|
loadResource(path: string): Promise<string>;
|
2016-11-29 15:36:33 -08:00
|
|
|
}
|