angular2
Version:
Angular 2 - a web framework for modern web apps
11 lines (9 loc) • 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) {}
}