Sha256: 18063946af91a7544d17aa154f0f0a4548b2f305e4b96b2c8e163ae5ec061990
Contents?: true
Size: 632 Bytes
Versions: 28
Compression:
Stored size: 632 Bytes
Contents
# encoding: utf-8 module Mutant class Mutator class Node # Mutator for loop control keywords class LoopControl < Generic INVERSE = IceNine.deep_freeze( next: :break, break: :next ) handle(*INVERSE.keys) private # Emit mutations # # @return [undefined] # # @api private # def dispatch super children.each_index(&method(:delete_child)) emit(s(INVERSE.fetch(node.type), *children)) emit_nil end end # Next end # Node end # Mutator end # Mutant
Version data entries
28 entries across 28 versions & 1 rubygems