angular/modules/angular2/src/render/dom/compiler/compile_step.ts
2015-05-19 15:12:59 -07:00

11 lines
360 B
TypeScript

import {CompileElement} from './compile_element';
import * as compileControlModule from './compile_control';
/**
* One part of the compile process.
* Is guaranteed to be called in depth first order
*/
export interface CompileStep {
process(parent: CompileElement, current: CompileElement,
control: compileControlModule.CompileControl): void;
}