2015-12-02 10:35:51 -08:00
|
|
|
import {Compiler, Compiler_} from 'angular2/src/core/linker/compiler';
|
|
|
|
import {HostViewFactoryRef, HostViewFactoryRef_} from 'angular2/src/core/linker/view_ref';
|
2015-10-01 10:07:49 -07:00
|
|
|
import {TemplateCompiler} from './template_compiler';
|
|
|
|
|
|
|
|
import {Injectable} from 'angular2/src/core/di';
|
2015-11-06 17:34:07 -08:00
|
|
|
import {Type} from 'angular2/src/facade/lang';
|
|
|
|
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
|
2015-10-01 10:07:49 -07:00
|
|
|
|
2015-12-02 10:35:51 -08:00
|
|
|
export abstract class RuntimeCompiler extends Compiler {
|
|
|
|
abstract compileInHost(componentType: Type): Promise<HostViewFactoryRef>;
|
|
|
|
abstract clearCache();
|
|
|
|
}
|
2015-10-06 06:53:39 -07:00
|
|
|
|
2015-10-01 10:07:49 -07:00
|
|
|
@Injectable()
|
2015-10-08 08:22:11 -07:00
|
|
|
export class RuntimeCompiler_ extends Compiler_ implements RuntimeCompiler {
|
2015-12-02 10:35:51 -08:00
|
|
|
constructor(private _templateCompiler: TemplateCompiler) { super(); }
|
2015-10-01 10:07:49 -07:00
|
|
|
|
2015-12-02 10:35:51 -08:00
|
|
|
compileInHost(componentType: Type): Promise<HostViewFactoryRef_> {
|
2015-10-01 10:07:49 -07:00
|
|
|
return this._templateCompiler.compileHostComponentRuntime(componentType)
|
2015-12-02 10:35:51 -08:00
|
|
|
.then(hostViewFactory => new HostViewFactoryRef_(hostViewFactory));
|
2015-10-01 10:07:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
clearCache() {
|
|
|
|
super.clearCache();
|
|
|
|
this._templateCompiler.clearCache();
|
|
|
|
}
|
|
|
|
}
|