Remove duplication between next and break mutator
This commit is contained in:
parent
295588ddee
commit
73aad2f6a3
7 changed files with 48 additions and 73 deletions
|
@ -1,3 +1,3 @@
|
||||||
---
|
---
|
||||||
threshold: 18
|
threshold: 18
|
||||||
total_score: 787
|
total_score: 784
|
||||||
|
|
|
@ -64,7 +64,6 @@ require 'mutant/mutator/node/argument'
|
||||||
require 'mutant/mutator/node/arguments'
|
require 'mutant/mutator/node/arguments'
|
||||||
require 'mutant/mutator/node/blockarg'
|
require 'mutant/mutator/node/blockarg'
|
||||||
require 'mutant/mutator/node/begin'
|
require 'mutant/mutator/node/begin'
|
||||||
require 'mutant/mutator/node/break'
|
|
||||||
require 'mutant/mutator/node/connective/binary'
|
require 'mutant/mutator/node/connective/binary'
|
||||||
require 'mutant/mutator/node/const'
|
require 'mutant/mutator/node/const'
|
||||||
require 'mutant/mutator/node/dstr'
|
require 'mutant/mutator/node/dstr'
|
||||||
|
@ -73,7 +72,7 @@ require 'mutant/mutator/node/kwbegin'
|
||||||
require 'mutant/mutator/node/named_value/access'
|
require 'mutant/mutator/node/named_value/access'
|
||||||
require 'mutant/mutator/node/named_value/constant_assignment'
|
require 'mutant/mutator/node/named_value/constant_assignment'
|
||||||
require 'mutant/mutator/node/named_value/variable_assignment'
|
require 'mutant/mutator/node/named_value/variable_assignment'
|
||||||
require 'mutant/mutator/node/next'
|
require 'mutant/mutator/node/loop_ctrl'
|
||||||
require 'mutant/mutator/node/noop'
|
require 'mutant/mutator/node/noop'
|
||||||
require 'mutant/mutator/node/op_asgn'
|
require 'mutant/mutator/node/op_asgn'
|
||||||
require 'mutant/mutator/node/while'
|
require 'mutant/mutator/node/while'
|
||||||
|
|
|
@ -1,30 +0,0 @@
|
||||||
# encoding: utf-8
|
|
||||||
|
|
||||||
module Mutant
|
|
||||||
class Mutator
|
|
||||||
class Node
|
|
||||||
|
|
||||||
# Break mutator
|
|
||||||
class Break < Generic
|
|
||||||
|
|
||||||
handle(:break)
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
# Emit mutations
|
|
||||||
#
|
|
||||||
# @return [undefined]
|
|
||||||
#
|
|
||||||
# @api private
|
|
||||||
#
|
|
||||||
def dispatch
|
|
||||||
super
|
|
||||||
children.each_index(&method(:delete_child))
|
|
||||||
emit(s(:next, *children))
|
|
||||||
emit_nil
|
|
||||||
end
|
|
||||||
|
|
||||||
end # Break
|
|
||||||
end # Node
|
|
||||||
end # Mutator
|
|
||||||
end # Mutant
|
|
|
@ -4,10 +4,15 @@ module Mutant
|
||||||
class Mutator
|
class Mutator
|
||||||
class Node
|
class Node
|
||||||
|
|
||||||
# Next mutator
|
# Mutator for loop control keywords
|
||||||
class Next < Generic
|
class LoopControl < Generic
|
||||||
|
|
||||||
handle(:next)
|
INVERSE = IceNine.deep_freeze(
|
||||||
|
:next => :break,
|
||||||
|
:break => :next
|
||||||
|
)
|
||||||
|
|
||||||
|
handle(*INVERSE.keys)
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
|
@ -20,7 +25,7 @@ module Mutant
|
||||||
def dispatch
|
def dispatch
|
||||||
super
|
super
|
||||||
children.each_index(&method(:delete_child))
|
children.each_index(&method(:delete_child))
|
||||||
emit(s(:break, *children))
|
emit(s(INVERSE.fetch(node.type), *children))
|
||||||
emit_nil
|
emit_nil
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
# encoding: utf-8
|
|
||||||
|
|
||||||
require 'spec_helper'
|
|
||||||
|
|
||||||
describe Mutant::Mutator::Node::Break, 'break' do
|
|
||||||
let(:source) { 'break true' }
|
|
||||||
|
|
||||||
let(:mutations) do
|
|
||||||
mutations = []
|
|
||||||
mutations << 'break false'
|
|
||||||
mutations << 'break nil'
|
|
||||||
mutations << 'break'
|
|
||||||
mutations << 'nil'
|
|
||||||
mutations << 'next true'
|
|
||||||
end
|
|
||||||
|
|
||||||
it_should_behave_like 'a mutator'
|
|
||||||
end
|
|
37
spec/unit/mutant/mutator/node/loop_ctrl_spec.rb
Normal file
37
spec/unit/mutant/mutator/node/loop_ctrl_spec.rb
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
# encoding: utf-8
|
||||||
|
|
||||||
|
require 'spec_helper'
|
||||||
|
|
||||||
|
describe Mutant::Mutator::Node::LoopControl do
|
||||||
|
|
||||||
|
context 'with break node' do
|
||||||
|
let(:source) { 'break true' }
|
||||||
|
|
||||||
|
let(:mutations) do
|
||||||
|
mutations = []
|
||||||
|
mutations << 'break false'
|
||||||
|
mutations << 'break nil'
|
||||||
|
mutations << 'break'
|
||||||
|
mutations << 'nil'
|
||||||
|
mutations << 'next true'
|
||||||
|
end
|
||||||
|
|
||||||
|
it_should_behave_like 'a mutator'
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'with next node' do
|
||||||
|
let(:source) { 'next true' }
|
||||||
|
|
||||||
|
let(:mutations) do
|
||||||
|
mutations = []
|
||||||
|
mutations << 'next false'
|
||||||
|
mutations << 'next nil'
|
||||||
|
mutations << 'next'
|
||||||
|
mutations << 'nil'
|
||||||
|
mutations << 'break true'
|
||||||
|
end
|
||||||
|
|
||||||
|
it_should_behave_like 'a mutator'
|
||||||
|
end
|
||||||
|
end
|
|
@ -1,18 +0,0 @@
|
||||||
# encoding: utf-8
|
|
||||||
|
|
||||||
require 'spec_helper'
|
|
||||||
|
|
||||||
describe Mutant::Mutator::Node::Next, 'next' do
|
|
||||||
let(:source) { 'next true' }
|
|
||||||
|
|
||||||
let(:mutations) do
|
|
||||||
mutations = []
|
|
||||||
mutations << 'next false'
|
|
||||||
mutations << 'next nil'
|
|
||||||
mutations << 'next'
|
|
||||||
mutations << 'nil'
|
|
||||||
mutations << 'break true'
|
|
||||||
end
|
|
||||||
|
|
||||||
it_should_behave_like 'a mutator'
|
|
||||||
end
|
|
Loading…
Reference in a new issue