Sha256: e524abeffe6aaa01f7ce8d94383d5e711d2a7b714e522f56666433e10632df1c
Contents?: true
Size: 531 Bytes
Versions: 28
Compression:
Stored size: 531 Bytes
Contents
# encoding: utf-8 module Mutant class Mutator class Node # Mutator for multiple assignment left hand side nodes class MLHS < self handle(:mlhs) private # Emit mutations # # @return [undefined] # # @api private # def dispatch children.each_index do |index| mutate_child(index) delete_child(index) unless children.one? end end end # MLHS end # Node end # Mutator end # Mutant
Version data entries
28 entries across 28 versions & 1 rubygems