Sha256: f845533fe2c9d09078d77be20ff1d0eb6dec6380800c0d50b56bb8632b180352

Contents?: true

Size: 1.49 KB

Versions: 10

Compression:

Stored size: 1.49 KB

Contents

module Mutant
  class Expression

    # Explicit method expression
    class Method < self

      MATCHERS = IceNine.deep_freeze(
        '.' => Matcher::Methods::Singleton,
        '#' => Matcher::Methods::Instance
      )

      register(
        /\A(?<scope_name>#{SCOPE_PATTERN})(?<scope_symbol>[.#])(?<method_name>#{METHOD_NAME_PATTERN})\z/
      )

      # Return method matcher
      #
      # @param [Env] env
      #
      # @return [Matcher::Method]
      #
      # @api private
      #
      def matcher(env)
        methods_matcher = MATCHERS.fetch(scope_symbol).new(env, scope)
        method = methods_matcher.methods.detect do |meth|
          meth.name.equal?(method_name)
        end or fail NameError, "Cannot find method #{method_name}"
        methods_matcher.matcher.build(env, scope, method)
      end

    private

      # Return scope name
      #
      # @return [String]
      #
      # @api private
      #
      def scope_name
        match[__method__]
      end

      # Return scope
      #
      # @return [Class, Method]
      #
      # @api private
      #
      def scope
        Mutant.constant_lookup(scope_name)
      end

      # Return method name
      #
      # @return [String]
      #
      # @api private
      #
      def method_name
        match[__method__].to_sym
      end

      # Return scope symbol
      #
      # @return [Symbol]
      #
      # @api private
      #
      def scope_symbol
        match[__method__]
      end

    end # Method
  end # Expression
end # Mutant

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
mutant-0.7.9 lib/mutant/expression/method.rb
mutant-0.7.8 lib/mutant/expression/method.rb
mutant-0.7.7 lib/mutant/expression/method.rb
mutant-0.7.6 lib/mutant/expression/method.rb
mutant-0.7.5 lib/mutant/expression/method.rb
mutant-0.7.4 lib/mutant/expression/method.rb
mutant-0.7.3 lib/mutant/expression/method.rb
mutant-0.7.2 lib/mutant/expression/method.rb
mutant-0.7.1 lib/mutant/expression/method.rb
mutant-0.6.7 lib/mutant/expression/method.rb