Sha256: e34bb0cb87c33eb6ab20c20b34378c0fafbc4b15363990b64f6e7c3447cc4282

Contents?: true

Size: 1.37 KB

Versions: 6

Compression:

Stored size: 1.37 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 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.4.2 lib/reek/smells/attribute.rb
reek-4.4.1 lib/reek/smells/attribute.rb
reek-4.4.0 lib/reek/smells/attribute.rb
reek-4.3.0 lib/reek/smells/attribute.rb
reek-4.2.5 lib/reek/smells/attribute.rb
reek-4.2.4 lib/reek/smells/attribute.rb