System.Xml.Xsl.Xslt.QilGenerator.CompileGlobalVariables C# (CSharp) Method

CompileGlobalVariables() private method

private CompileGlobalVariables ( ) : void
return void
        private void CompileGlobalVariables()
        {
            CheckSingletonFocus();
            _singlFocus.SetFocus(SingletonFocusType.InitialDocumentNode);

            foreach (VarPar par in _compiler.ExternalPars)
            {
                _extPars.Add(CompileGlobalVarPar(par));
            }
            foreach (VarPar var in _compiler.GlobalVars)
            {
                _gloVars.Add(CompileGlobalVarPar(var));
            }

            _singlFocus.SetFocus(null);
        }
QilGenerator