Sha256: c15eb4755b4e29289c630442ed9795fbb91a25587a2adfeddbc470b673dcd11f
Contents?: true
Size: 538 Bytes
Versions: 15
Compression:
Stored size: 538 Bytes
Contents
module Mutant class Mutator class Node class Literal < self # Mutator for array literals class Array < self handle(Rubinius::AST::ArrayLiteral) private # Emit mutations # # @return [undefined] # # @api private # def dispatch emit_attribute_mutations(:body) emit_self([]) emit_nil emit_self([new_nil] + node.body.dup) end end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems