11 lines
339 B
JavaScript
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) {}
|
|
}
|