Fix overlong line with horrible formatting
This commit is contained in:
parent
58fdd4f9b7
commit
a53217f83c
2 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -49,4 +49,3 @@ module Mutant
|
|||
end # Node
|
||||
end # Mutator
|
||||
end # Mutant
|
||||
|
||||
|
|
Loading…
Reference in a new issue