Sha256: baba46b5ab60a511c2aa91a229cfddb84f61f9723ec362660f8fdbcb6608bfa7

Contents?: true

Size: 1.31 KB

Versions: 6

Compression:

Stored size: 1.31 KB

Contents

# frozen_string_literal: true
require_relative 'base_detector'

module Reek
  module SmellDetectors
    #
    # A class that publishes a getter or setter for an instance variable
    # invites client classes to become too intimate with its inner workings,
    # and in particular with its representation of state.
    #
    # This detector raises a warning for every public +attr_writer+,
    # +attr_accessor+, and +attr+ with the writable flag set to +true+.
    #
    # See {file:docs/Attribute.md} for details.
    #
    # TODO: Catch attributes declared "by hand"
    class Attribute < BaseDetector
      def initialize(*args)
        super
      end

      def self.contexts # :nodoc:
        [:sym]
      end

      #
      # Checks whether the given class declares any attributes.
      #
      # @return [Array<SmellWarning>]
      #
      def sniff(ctx)
        attributes_in(ctx).map do |_attribute, line|
          smell_warning(
            context: ctx,
            lines: [line],
            message: 'is a writable attribute')
        end
      end

      private

      # :reek:UtilityFunction
      def attributes_in(module_ctx)
        if module_ctx.visibility == :public
          call_node = module_ctx.exp
          [[call_node.name, call_node.line]]
        else
          []
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
reek-4.6.1 lib/reek/smell_detectors/attribute.rb
reek-4.6.0 lib/reek/smell_detectors/attribute.rb
reek-4.5.6 lib/reek/smell_detectors/attribute.rb
reek-4.5.5 lib/reek/smell_detectors/attribute.rb
reek-4.5.4 lib/reek/smell_detectors/attribute.rb
reek-4.5.3 lib/reek/smell_detectors/attribute.rb