2014-09-19 23:03:36 +00:00
|
|
|
import {Future} from '../facade';
|
|
|
|
import {ProtoView} from './proto_view';
|
|
|
|
|
|
|
|
export class Compiler {
|
|
|
|
/**
|
|
|
|
* # Why future?
|
2014-09-24 20:20:59 -07:00
|
|
|
* - compilation will load templates. Instantiating views before templates are loaded will
|
2014-09-19 23:03:36 +00:00
|
|
|
* complicate the Directive code. BENEFIT: view instantiation become synchrnous.
|
|
|
|
* # Why result that is independent of injector?
|
|
|
|
* - don't know about injector in deserialization
|
|
|
|
* - compile does not need the injector, only the ViewFactory does
|
|
|
|
*/
|
2014-09-24 20:20:59 -07:00
|
|
|
@of(ProtoView) compile(element:TemplateElement):Future {
|
2014-09-19 23:03:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|