Sha256: 290ab6a5a1dccb8511525d220009f5a056fe7cbf09e76b731e4be74fcedefd38
Contents?: true
Size: 432 Bytes
Versions: 20
Compression:
Stored size: 432 Bytes
Contents
# frozen_string_literal: true module Mutant class Mutator class Node # Mutator for dynamic literals class DynamicLiteral < self handle(:dstr, :dsym) private def dispatch emit_singletons children.each_index do |index| mutate_child(index, &method(:n_begin?)) end end end # DynamicLiteral end # Node end # Mutator end # Mutant
Version data entries
20 entries across 20 versions & 1 rubygems