# File rexml/xpath_parser.rb, line 182
  def MultiplicativeExpr path, nodeset
			#puts "MultiplicativeExpr( #{path}, #{puta nodeset} )" if DEBUG
			GenericExpr( path, nodeset, /^\s*(\*| div | mod )\s*/, @UNARYEXPR) do |a,o,b|
				a = Functions::number(a)
				b = Functions::number(b)
				case o
				when '*'
					a * b
				when ' mod '
					a % b
				when ' div '
					a.divmod(b)[0]
				end
			end
		end