Sha256: c28650f58bcc6845ffeecb2221fbfc6e7fe55836979360353dd3fd09b3305f06
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
# encoding: utf-8 module Mutant class Mutator class Node class Literal # Abstract literal range mutator class Range < self MAP = { irange: :erange, erange: :irange }.freeze children :start, :_end handle(*MAP.keys) private # Emit mutants # # @return [undefined] # # @api private # def dispatch emit_singletons emit_inverse emit_lower_bound_mutations emit_upper_bound_mutations end # Return inverse node # # @return [Parser::AST::Node] # # @api private # def emit_inverse emit(s(MAP.fetch(node.type), *children)) end # Emit range start mutations # # @return [undefined] # # @api private # def emit_upper_bound_mutations emit__end_mutations emit_type(NAN, _end) end # Emit start mutations # # @return [undefined] # # @api private # def emit_lower_bound_mutations emit_start_mutations emit_type(start, INFINITY) emit_type(start, NAN) end end # Range end # Literal end # Node end # Mutator end # Mutant
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mutant-0.5.19 | lib/mutant/mutator/node/literal/range.rb |