Sha256: d998214e8c5140c7be69c40f9f19cdacd50a6e781377213d798025d1a0a23c0b

Contents?: true

Size: 1.42 KB

Versions: 13

Compression:

Stored size: 1.42 KB

Contents

# frozen_string_literal: true
require_relative 'smell_configuration'
require_relative 'smell_detector'
require_relative 'smell_warning'

module Reek
  module Smells
    #
    # 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 < SmellDetector
      def initialize(*args)
        super
      end

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

      #
      # Checks whether the given class declares any attributes.
      #
      # @return [Array<SmellWarning>]
      #
      def inspect(ctx)
        attributes_in(ctx).map do |attribute, line|
          smell_warning(
            context: ctx,
            lines: [line],
            message: 'is a writable attribute',
            parameters: { name: attribute.to_s })
        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

13 entries across 13 versions & 1 rubygems

Version Path
reek-4.2.3 lib/reek/smells/attribute.rb
reek-4.2.2 lib/reek/smells/attribute.rb
reek-4.2.1 lib/reek/smells/attribute.rb
reek-4.2.0 lib/reek/smells/attribute.rb
reek-4.1.1 lib/reek/smells/attribute.rb
reek-4.1.0 lib/reek/smells/attribute.rb
reek-4.0.5 lib/reek/smells/attribute.rb
reek-4.0.4 lib/reek/smells/attribute.rb
reek-4.0.3 lib/reek/smells/attribute.rb
reek-4.0.2 lib/reek/smells/attribute.rb
reek-4.0.1 lib/reek/smells/attribute.rb
reek-4.0.0 lib/reek/smells/attribute.rb
reek-4.0.0.pre1 lib/reek/smells/attribute.rb