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

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

Overview

RemoveAction to remove code.

Instance Method Summary collapse

Methods inherited from Action

#<=>, #line, #rewritten_source

Constructor Details

#initialize(instance, code = nil) ⇒ RemoveAction

Returns a new instance of RemoveAction.



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

def initialize(instance, code=nil)
  super
end

Instance Method Details

#begin_posInteger

Begin position of code to replace.

Returns:

  • (Integer)

    begin position.



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

def begin_pos
  @node.loc.expression.begin_pos
end

#end_posInteger

End position of code to replace.

Returns:

  • (Integer)

    end position.



20
21
22
# File 'lib/synvert/core/rewriter/action/remove_action.rb', line 20

def end_pos
  @node.loc.expression.end_pos
end

#rewritten_codeObject

The rewritten code, always empty string.



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

def rewritten_code
  ''
end