BooCompiler.Tests.AbstractCompilerTestCase.SetUpCompilerPipeline C# (CSharp) Метод

SetUpCompilerPipeline() защищенный Метод

Override in derived classes to use a different pipeline.
protected SetUpCompilerPipeline ( ) : CompilerPipeline
Результат Boo.Lang.Compiler.CompilerPipeline
        protected virtual CompilerPipeline SetUpCompilerPipeline()
        {
            CompilerPipeline pipeline = null;

            if (VerifyGeneratedAssemblies)
            {
                pipeline = new CompileToFileAndVerify();
            }
            else
            {
                pipeline = new CompileToMemory();
            }

            pipeline.Add(new RunAssembly());
            return pipeline;
        }