dotless.Core.engine.ExtensibleEngineImpl.RunCssDomPreprocessors C# (CSharp) Метод

RunCssDomPreprocessors() приватный Метод

Preprocessing CSS Dom before its converted to Css
private RunCssDomPreprocessors ( ) : void
Результат void
        private void RunCssDomPreprocessors()
        {
            if (pipelineFactory.CssDomPreprocessors != null)
                foreach (var cssPreprocessor in pipelineFactory.CssDomPreprocessors)
                    CssDom = cssPreprocessor.Process(CssDom);
        }