Sha256: 7666fba2c37a169048d0f740eed7e91ded75c6346a173cd0bde185a8eb8529eb

Contents?: true

Size: 1.2 KB

Versions: 52

Compression:

Stored size: 1.2 KB

Contents

# frozen_string_literal: true

module Mutant
  class Mutator
    class Node
      # Namespace for define mutations
      class Define < self

      private

        def dispatch
          emit_arguments_mutations
          emit_optarg_body_assignments
          emit_body(N_RAISE)
          emit_body(N_ZSUPER)
          emit_body(nil)
          emit_body_mutations if body
        end

        def emit_optarg_body_assignments
          arguments.children.each do |argument|
            next unless n_optarg?(argument) && AST::Meta::Optarg.new(argument).used?

            emit_body_prepend(s(:lvasgn, *argument))
          end
        end

        def emit_body_prepend(node)
          if body
            emit_body(s(:begin, node, body))
          else
            emit_body(node)
          end
        end

        # Mutator for instance method defines
        class Instance < self

          handle :def

          children :name, :arguments, :body

        end # Instance

        # Mutator for singleton method defines
        class Singleton < self

          handle :defs

          children :subject, :name, :arguments, :body

        end # Singleton

      end # Define
    end # Node
  end # Mutator
end # Mutant

Version data entries

52 entries across 52 versions & 1 rubygems

Version Path
mutant-0.10.27 lib/mutant/mutator/node/define.rb
mutant-0.10.26 lib/mutant/mutator/node/define.rb
mutant-0.10.25 lib/mutant/mutator/node/define.rb
mutant-0.10.24 lib/mutant/mutator/node/define.rb
mutant-0.10.23 lib/mutant/mutator/node/define.rb
mutant-0.10.22 lib/mutant/mutator/node/define.rb
mutant-0.10.21 lib/mutant/mutator/node/define.rb
mutant-0.10.20 lib/mutant/mutator/node/define.rb
mutant-0.10.19 lib/mutant/mutator/node/define.rb
mutant-0.10.18 lib/mutant/mutator/node/define.rb
mutant-0.10.17 lib/mutant/mutator/node/define.rb
mutant-0.10.16 lib/mutant/mutator/node/define.rb
mutant-0.10.15 lib/mutant/mutator/node/define.rb
mutant-0.10.14 lib/mutant/mutator/node/define.rb
mutant-0.10.13 lib/mutant/mutator/node/define.rb
mutant-0.10.12 lib/mutant/mutator/node/define.rb
mutant-0.10.11 lib/mutant/mutator/node/define.rb
mutant-0.10.10 lib/mutant/mutator/node/define.rb
mutant-0.10.9 lib/mutant/mutator/node/define.rb
mutant-0.10.8 lib/mutant/mutator/node/define.rb