29 lines
1007 B
TypeScript
29 lines
1007 B
TypeScript
|
import {Compiler, internalCreateProtoView} from 'angular2/src/core/compiler/compiler';
|
||
|
import {ProtoViewRef} from 'angular2/src/core/compiler/view_ref';
|
||
|
import {ProtoViewFactory} from 'angular2/src/core/compiler/proto_view_factory';
|
||
|
import {TemplateCompiler} from './template_compiler';
|
||
|
|
||
|
import {Injectable} from 'angular2/src/core/di';
|
||
|
import {Type} from 'angular2/src/core/facade/lang';
|
||
|
import {Promise, PromiseWrapper} from 'angular2/src/core/facade/async';
|
||
|
|
||
|
@Injectable()
|
||
|
export class RuntimeCompiler extends Compiler {
|
||
|
/**
|
||
|
* @private
|
||
|
*/
|
||
|
constructor(_protoViewFactory: ProtoViewFactory, private _templateCompiler: TemplateCompiler) {
|
||
|
super(_protoViewFactory);
|
||
|
}
|
||
|
|
||
|
compileInHost(componentType: Type): Promise<ProtoViewRef> {
|
||
|
return this._templateCompiler.compileHostComponentRuntime(componentType)
|
||
|
.then(compiledHostTemplate => internalCreateProtoView(this, compiledHostTemplate));
|
||
|
}
|
||
|
|
||
|
clearCache() {
|
||
|
super.clearCache();
|
||
|
this._templateCompiler.clearCache();
|
||
|
}
|
||
|
}
|