Sha256: 3cd0b39ca08e7b671b3a6415b055719f6202aab9266cb3c2759d581464de0c20
Contents?: true
Size: 954 Bytes
Versions: 23
Compression:
Stored size: 954 Bytes
Contents
# encoding: utf-8 module Mutant class Mutator class Node # Mutator for when nodes class When < self handle(:when) private # Emit mutations # # @return [undefined] # # @api private # def dispatch mutate_body mutate_conditions end # Emit condition mutations # # @return [undefined] # # @api private # def mutate_conditions conditions = children.length - 1 children[0..-2].each_index do |index| delete_child(index) if conditions > 1 mutate_child(index) end end # Emit body mutations # # @return [undefined] # # @api private # def mutate_body mutate_child(children.length - 1) end end # When end # Node end # Mutator end # Mutant
Version data entries
23 entries across 23 versions & 1 rubygems