Fix overlong line with horrible formatting

This commit is contained in:
Markus Schirp 2014-04-22 17:49:55 +00:00
parent 58fdd4f9b7
commit a53217f83c
2 changed files with 4 additions and 2 deletions

View file

@ -180,7 +180,10 @@ module Mutant
# @api private
#
def emit_implicit_self
if receiver.type == :self && !KEYWORDS.include?(selector) && !attribute_assignment? && !OP_ASSIGN.include?(parent_type)
if receiver.type == :self &&
!KEYWORDS.include?(selector) &&
!attribute_assignment? &&
!OP_ASSIGN.include?(parent_type)
emit_receiver(nil)
end
end

View file

@ -49,4 +49,3 @@ module Mutant
end # Node
end # Mutator
end # Mutant