Sha256: 4e83ea631be34ff2fd04bda74d6f7cd862574095f171445cb3aa8c330031aa68

Contents?: true

Size: 580 Bytes

Versions: 9

Compression:

Stored size: 580 Bytes

Contents

require File.join(File.dirname(File.expand_path(__FILE__)), 'code_context')
require File.join(File.dirname(File.expand_path(__FILE__)), 'code_parser')
require File.join(File.dirname(File.expand_path(__FILE__)), 'sniffer')
require File.join(File.dirname(File.dirname(File.expand_path(__FILE__))), 'source', 'sexp_formatter')

module Reek
  module Core

    #
    # A context wrapper for any module found in a syntax tree.
    #
    class ModuleContext < CodeContext

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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
reek-1.3.1 lib/reek/core/module_context.rb
reek-1.3 lib/reek/core/module_context.rb
reek-1.2.13 lib/reek/core/module_context.rb
reek-1.2.12 lib/reek/core/module_context.rb
reek-1.2.11 lib/reek/core/module_context.rb
reek-1.2.10 lib/reek/core/module_context.rb
reek-1.2.9 lib/reek/core/module_context.rb
reek-1.2.8 lib/reek/core/module_context.rb
reek-1.2.7.3 lib/reek/core/module_context.rb