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-11-18 08:40:41 -08:00
|
|
|
import {ImportResolver} from '../output/path_util';
|
|
|
|
|
|
|
|
import {StaticReflectorHost} from './static_reflector';
|
2016-11-15 08:49:23 -08:00
|
|
|
import {StaticSymbol} from './static_symbol';
|
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-11-29 15:36:33 -08:00
|
|
|
export interface AotCompilerHost extends StaticReflectorHost, ImportResolver,
|
|
|
|
AotSummaryResolverHost {
|
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
|
|
|
}
|