Sha256: ed988c3724bb8e1be0155fefe506331f27d72e35917beef44172aeeb2e931a03

Contents?: true

Size: 1.43 KB

Versions: 10

Compression:

Stored size: 1.43 KB

Contents

# frozen_string_literal: true

module Mutant
  class Mutator
    class Node

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

        UNDERSCORE = '_'

        children :name

      private

        # Emit mutations
        #
        # @return [undefined]
        def dispatch
          emit_name_mutation
        end

        # Emit name mutations
        #
        # @return [undefined]
        def emit_name_mutation
          return if skip?
          emit_name(:"#{UNDERSCORE}#{name}")
        end

        # Test if argument mutation is skipped
        #
        # @return [Boolean]
        def skip?
          name.to_s.start_with?(UNDERSCORE)
        end

        # Mutator for optional arguments
        class Optional < self

          TYPE_MAP = IceNine.deep_freeze(
            optarg:   :arg,
            kwoptarg: :kwarg
          )

          handle(:optarg, :kwoptarg)

          children :name, :default

        private

          # Emit mutations
          #
          # @return [undefined]
          def dispatch
            emit_name_mutation
            emit_required_mutation
            emit_default_mutations
          end

          # Emit required mutation
          #
          # @return [undefined]
          def emit_required_mutation
            emit(s(TYPE_MAP.fetch(node.type), name))
          end

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

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
mutant-0.9.8 lib/mutant/mutator/node/argument.rb
mutant-0.9.7 lib/mutant/mutator/node/argument.rb
mutant-0.9.6 lib/mutant/mutator/node/argument.rb
mutant-0.9.5 lib/mutant/mutator/node/argument.rb
mutant-0.9.4 lib/mutant/mutator/node/argument.rb
mutant-0.9.3 lib/mutant/mutator/node/argument.rb
mutant-0.9.2 lib/mutant/mutator/node/argument.rb
mutant-0.9.1 lib/mutant/mutator/node/argument.rb
mutant-0.9.0 lib/mutant/mutator/node/argument.rb
mutant-0.8.24 lib/mutant/mutator/node/argument.rb