Sha256: b7f3dc3275ce0992d7cdb0882a9aa3460abf73cc033cf8ff69417479fe0053e2

Contents?: true

Size: 1.99 KB

Versions: 1

Compression:

Stored size: 1.99 KB

Contents

module Mutant
  class Mutator
    class Node
      # Mutator for Rubinius::AST::If nodes
      class IfStatement < self

        handle(Rubinius::AST::If)

      private

        # Emit mutations on Rubinius::AST::If nodes
        #
        # @return [undefined]
        #
        # @api private
        #
        def dispatch
          emit_attribute_mutations(:condition)
          emit_attribute_mutations(:body)
          emit_attribute_mutations(:else) if node.else
          emit_inverted_condition 
          emit_deleted_if_branch
          emit_deleted_else_branch
        end

        # Emit inverted condition
        #
        # Especially the same like swap branches but more universal as it also 
        # covers the case there is no else branch
        #
        # @return [undefined]
        #
        # @api private
        #
        def emit_inverted_condition
          emit_self(new_send(condition, :'!'), if_branch, else_branch)
        end

        # Emit deleted else branch
        #
        # @return [undefined]
        #
        # @api private
        #
        def emit_deleted_else_branch
          emit_self(condition, if_branch, nil)
        end

        # Emit deleted if branch
        #
        # @return [undefined]
        #
        # @api private
        #
        def emit_deleted_if_branch
          body = else_branch
          return unless body
          emit_self(condition, else_branch, nil)
        end

        # Return if_branch of node
        #
        # @return [Rubinius::AST::Node]
        #
        # @api private
        #
        def if_branch
          node.body
        end

        # Return condition of node
        #
        # @return [Rubinius::AST::Node]
        #
        # @api private
        #
        def condition
          node.condition
        end

        # Return else body of node
        #
        # @return [Rubinius::AST::Node]
        #
        # @api private
        #
        def else_branch
          node.else
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mutant-0.2.0 lib/mutant/mutator/node/if_statement.rb