예제 #1
0
        public void Begin(ICompiler compiler)
        {
            Backend  = compiler.Backend;
            Compiler = compiler;
            Data     = compiler.Data;
            Input    = compiler.Input;

            Initialize();
            Begin();
        }
예제 #2
0
 public ProcessingContext(IBuildInput project) : this(project, new State())
 {
 }
예제 #3
0
 public ProcessingContext(IBuildInput project, IState state)
 {
     this.project = project;
     this.state   = state;
 }