Sha256: 0e832d0beabb5b055b2b2c04c1d640e6c2d92528f1fde6ca31b3bdac512685e6

Contents?: true

Size: 317 Bytes

Versions: 10

Compression:

Stored size: 317 Bytes

Contents

require_relative 'code_context'

module Reek
  module Context
    #
    # A context wrapper for method calls found in a syntax tree.
    #
    class SendContext < CodeContext
      attr_reader :name

      def initialize(context, exp, name)
        @name = name
        super context, exp
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
reek-3.11 lib/reek/context/send_context.rb
reek-3.10.2 lib/reek/context/send_context.rb
reek-3.10.1 lib/reek/context/send_context.rb
reek-3.10.0 lib/reek/context/send_context.rb
reek-3.9.1 lib/reek/context/send_context.rb
reek-3.9.0 lib/reek/context/send_context.rb
reek-3.8.3 lib/reek/context/send_context.rb
reek-3.8.2 lib/reek/context/send_context.rb
reek-3.8.1 lib/reek/context/send_context.rb
reek-3.8.0 lib/reek/context/send_context.rb