Class: Synvert::Core::Rewriter::RemoveAction

Inherits:
Action
  • Object
show all
Defined in:
lib/synvert/core/rewriter/action/remove_action.rb

Overview

RemoveAction to remove current node.

Constant Summary

Constants inherited from Action

Action::DEFAULT_INDENT

Instance Method Summary collapse

Methods inherited from Action

#line, #rewritten_source

Constructor Details

#initialize(instance) ⇒ RemoveAction

Returns a new instance of RemoveAction.



6
7
8
# File 'lib/synvert/core/rewriter/action/remove_action.rb', line 6

def initialize(instance)
  super(instance, nil)
end

Instance Method Details

#begin_posInteger

Begin position of code to replace.

Returns:

  • (Integer)

    begin position.



13
14
15
16
17
18
19
# File 'lib/synvert/core/rewriter/action/remove_action.rb', line 13

def begin_pos
  if take_whole_line?
    start_index
  else
    @node.loc.expression.begin_pos
  end
end

#end_posInteger

End position of code to replace.

Returns:

  • (Integer)

    end position.



24
25
26
27
28
29
30
# File 'lib/synvert/core/rewriter/action/remove_action.rb', line 24

def end_pos
  if take_whole_line?
    end_index
  else
    @node.loc.expression.end_pos
  end
end

#rewritten_codeObject

The rewritten code, always empty string.



33
34
35
# File 'lib/synvert/core/rewriter/action/remove_action.rb', line 33

def rewritten_code
  ''
end