System.Xml.Xsl.IlGen.XmlILOptimizerVisitor.AreLiteralArgs C# (CSharp) Method

AreLiteralArgs() private method

Return true if all children of "nd" are constant.
private AreLiteralArgs ( QilNode nd ) : bool
nd QilNode
return bool
        private bool AreLiteralArgs(QilNode nd) {
            foreach (QilNode child in nd)
                if (!IsLiteral(child))
                    return false;

            return true;
        }
XmlILOptimizerVisitor