Sha256: 3876d068cfd2d7b6e8719c7719710dd9774930a88b303d795b209dea53f534e2
Contents?: true
Size: 383 Bytes
Versions: 79
Compression:
Stored size: 383 Bytes
Contents
# frozen_string_literal: true module Mutant class Mutator class Node # Generic mutator class Generic < self private def dispatch children.each_with_index do |child, index| mutate_child(index) if child.instance_of?(::Parser::AST::Node) end end end # Generic end # Node end # Mutator end # Mutant
Version data entries
79 entries across 79 versions & 1 rubygems