System.Xml.Xsl.IlGen.XmlILVisitor.VisitLiteralDecimal C# (CSharp) Method

VisitLiteralDecimal() protected method

Generate code for QilNodeType.LiteralDecimal.
protected VisitLiteralDecimal ( QilLiteral ndDec ) : QilNode
ndDec System.Xml.Xsl.Qil.QilLiteral
return QilNode
        protected override QilNode VisitLiteralDecimal(QilLiteral ndDec) {
            this.helper.ConstructLiteralDecimal((decimal) ndDec);
            this.iterCurr.Storage = StorageDescriptor.Stack(typeof(decimal), false);
            return ndDec;
        }
XmlILVisitor