dotless.Core.engine.ExtensibleEngineImpl.RunLessDomPreprocessors C# (CSharp) Method

RunLessDomPreprocessors() private method

Preprocess the Less document before it is sent to the Css converter
private RunLessDomPreprocessors ( ) : void
return void
        private void RunLessDomPreprocessors()
        {
            if (pipelineFactory.LessDomPreprocessors != null)
                foreach (var lessPreprocessor in pipelineFactory.LessDomPreprocessors)
                    LessDom = lessPreprocessor.Process(LessDom);
        }