Sha256: 842ac105fac36b9e0a34dbb361806615b29dcc4212409b9fc5d7306b62d0910f

Contents?: true

Size: 1.66 KB

Versions: 4

Compression:

Stored size: 1.66 KB

Contents

# encoding: utf-8

module Mutant
  class Mutator
    class Node

      # Mutator for required arguments
      class Argument < self
        handle(:arg)

        UNDERSCORE = '_'.freeze

        children :name

      private

        # Perform dispatch
        #
        # @return [undefined]
        #
        # @api private
        #
        def dispatch
          return if skip?
          emit_name_mutation
        end

        # Emit name mutations
        #
        # @return [undefined]
        #
        # @api private
        #
        def emit_name_mutation
          Mutator::Util::Symbol.each(name, self) do |name|
            emit_name(name)
          end
        end

        # Test if argument mutation is skipped
        #
        # @return [true]
        #   if argument should not get mutated
        #
        # @return [false]
        #   otherwise
        #
        # @api private
        #
        def skip?
          name.to_s.start_with?(UNDERSCORE)
        end

        # Mutator for optional arguments
        class Optional < self

          handle(:optarg)

          children :name, :default

        private

          # Perform dispatch
          #
          # @return [undefined]
          #
          # @api private
          #
          def dispatch
            emit_name_mutation
            emit_required_mutation
            emit_default_mutations
          end

          # Emit required mutation
          #
          # @return [undefined]
          #
          # @api private
          #
          def emit_required_mutation
            emit(s(:arg, name))
          end

        end # Optional

      end # Argument
    end # Node
  end # Mutator
end # Mutant

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mutant-0.3.0.rc3 lib/mutant/mutator/node/argument.rb
mutant-0.3.0.rc2 lib/mutant/mutator/node/argument.rb
mutant-0.3.0.rc1 lib/mutant/mutator/node/argument.rb
mutant-0.3.0.beta22 lib/mutant/mutator/node/argument.rb