Sha256: d7a4593b5ffc4cede5c63c4a9589dea7d8f0683158b21385884fea1a852f04e6

Contents?: true

Size: 1.63 KB

Versions: 92

Compression:

Stored size: 1.63 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Performance
      # Identifies places where numeric argument to BigDecimal should be
      # converted to string. Initializing from String is faster
      # than from Numeric for BigDecimal.
      #
      # @example
      #   # bad
      #   BigDecimal(1, 2)
      #   4.to_d(6)
      #   BigDecimal(1.2, 3, exception: true)
      #   4.5.to_d(6, exception: true)
      #
      #   # good
      #   BigDecimal('1', 2)
      #   BigDecimal('4', 6)
      #   BigDecimal('1.2', 3, exception: true)
      #   BigDecimal('4.5', 6, exception: true)
      #
      class BigDecimalWithNumericArgument < Base
        extend AutoCorrector

        MSG = 'Convert numeric literal to string and pass it to `BigDecimal`.'
        RESTRICT_ON_SEND = %i[BigDecimal to_d].freeze

        def_node_matcher :big_decimal_with_numeric_argument?, <<~PATTERN
          (send nil? :BigDecimal $numeric_type? ...)
        PATTERN

        def_node_matcher :to_d?, <<~PATTERN
          (send [!nil? $numeric_type?] :to_d ...)
        PATTERN

        def on_send(node)
          if (numeric = big_decimal_with_numeric_argument?(node))
            add_offense(numeric.source_range) do |corrector|
              corrector.wrap(numeric, "'", "'")
            end
          elsif (numeric_to_d = to_d?(node))
            add_offense(numeric_to_d.source_range) do |corrector|
              big_decimal_args = node.arguments.map(&:source).unshift("'#{numeric_to_d.source}'").join(', ')

              corrector.replace(node, "BigDecimal(#{big_decimal_args})")
            end
          end
        end
      end
    end
  end
end

Version data entries

92 entries across 92 versions & 6 rubygems

Version Path
harbr-0.1.55 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.54 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.53 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.52 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.50 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.49 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.48 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.47 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.46 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.45 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.44 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.43 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.42 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.41 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.39 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.38 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
harbr-0.1.37 vendor/bundle/ruby/3.2.0/gems/rubocop-performance-1.19.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
getargv-0.3.3-universal-darwin vendor/bundle/ruby/3.3.0/gems/rubocop-performance-1.20.1/lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
rubocop-performance-1.20.1 lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb
rubocop-performance-1.20.0 lib/rubocop/cop/performance/big_decimal_with_numeric_argument.rb