7 references to LiteralDecimal
System.Private.Xml (7)
System\Xml\Xsl\IlGen\XmlILOptimizerVisitor.cs (7)
1273return Replace(XmlILOptimization.EliminateNegate, local0, VisitLiteralDecimal(f.LiteralDecimal(-local2))); 5410return this.f.LiteralDecimal((decimal)value.ValueAs(typeof(decimal))); 5537case QilNodeType.Add: return f.LiteralDecimal(lngLeft + lngRight); 5538case QilNodeType.Subtract: return f.LiteralDecimal(lngLeft - lngRight); 5539case QilNodeType.Multiply: return f.LiteralDecimal(lngLeft * lngRight); 5540case QilNodeType.Divide: return f.LiteralDecimal(lngLeft / lngRight); 5541case QilNodeType.Modulo: return f.LiteralDecimal(lngLeft % lngRight);