Files
Angular-Docs-Cn/modules/angular2/src/render/dom/compiler/compile_step.js
T

11 lines
339 B
JavaScript

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 class CompileStep {
process(parent:CompileElement, current:CompileElement, control:compileControlModule.CompileControl) {}
}