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

VisitLiteralDouble() protected method

Generate code for QilNodeType.LiteralDouble.
protected VisitLiteralDouble ( QilLiteral ndDbl ) : QilNode
ndDbl System.Xml.Xsl.Qil.QilLiteral
return QilNode
        protected override QilNode VisitLiteralDouble(QilLiteral ndDbl) {
            this.helper.Emit(OpCodes.Ldc_R8, (double) ndDbl);
            this.iterCurr.Storage = StorageDescriptor.Stack(typeof(double), false);
            return ndDbl;
        }
XmlILVisitor