Sha256: 393728a084c5d32d48c4765bec06ceb055b5a3b51017f0d52a90d24ae46abccb
Contents?: true
Size: 447 Bytes
Versions: 5
Compression:
Stored size: 447 Bytes
Contents
# frozen_string_literal: true module Mutant class Mutator class Node # OpAsgn mutator class OpAsgn < self handle(:op_asgn) children :left, :operation, :right private def dispatch emit_singletons emit_left_mutations do |node| !n_self?(node) end emit_right_mutations end end # OpAsgn end # Node end # Mutator end # Mutant
Version data entries
5 entries across 5 versions & 1 rubygems