Sha256: 268c768fe05920f0f1d2fc3423bb4700d267a85c41d6a7483c89c30441227140

Contents?: true

Size: 494 Bytes

Versions: 17

Compression:

Stored size: 494 Bytes

Contents

# frozen_string_literal: true

module Mutant
  class Mutator
    class Node
      # Namespace for `defined?` mutations
      class Defined < self

        handle(:defined?)

        children :expression

      private

        # Emit mutations
        #
        # @return [undefined]
        def dispatch
          emit_singletons
          emit(N_TRUE)

          emit_expression_mutations { |node| !n_self?(node) }
        end

      end # Defined
    end # Node
  end # Mutator
end # Mutant

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
mutant-0.9.8 lib/mutant/mutator/node/defined.rb
mutant-0.9.7 lib/mutant/mutator/node/defined.rb
mutant-0.9.6 lib/mutant/mutator/node/defined.rb
mutant-0.9.5 lib/mutant/mutator/node/defined.rb
mutant-0.9.4 lib/mutant/mutator/node/defined.rb
mutant-0.9.3 lib/mutant/mutator/node/defined.rb
mutant-0.9.2 lib/mutant/mutator/node/defined.rb
mutant-0.9.1 lib/mutant/mutator/node/defined.rb
mutant-0.9.0 lib/mutant/mutator/node/defined.rb
mutant-0.8.24 lib/mutant/mutator/node/defined.rb
mutant-0.8.23 lib/mutant/mutator/node/defined.rb
mutant-0.8.22 lib/mutant/mutator/node/defined.rb
mutant-0.8.21 lib/mutant/mutator/node/defined.rb
mutant-0.8.20 lib/mutant/mutator/node/defined.rb
mutant-0.8.19 lib/mutant/mutator/node/defined.rb
mutant-0.8.18 lib/mutant/mutator/node/defined.rb
mutant-0.8.17 lib/mutant/mutator/node/defined.rb