Sha256: 9fbc233f34a9c8b519b75122bb784a6b559d4e1004cfd6dc7a7e6078232f65ea
Contents?: true
Size: 633 Bytes
Versions: 24
Compression:
Stored size: 633 Bytes
Contents
module Mutant class Mutator class Node class Send # Mutator for sends that correspond to a binary operator class Binary < self children :left, :operator, :right private # Emit mutations # # @return [undefined] # # @api private # def dispatch emit(left) emit_left_mutations emit_selector_replacement emit(right) unless n_splat?(right) emit_right_mutations end end # Binary end # Send end # Node end # Mutator end # Mutant
Version data entries
24 entries across 24 versions & 1 rubygems