Class: Synvert::Core::Rewriter::InsertAfterAction

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

Overview

InsertAfterAction to insert code next to the node.

Instance Method Summary collapse

Methods inherited from Action

#<=>, #initialize, #line, #rewritten_code, #rewritten_source

Constructor Details

This class inherits a constructor from Synvert::Core::Rewriter::Action

Instance Method Details

#begin_posInteger

Begin position to insert code.

Returns:

  • (Integer)

    begin position.



9
10
11
# File 'lib/synvert/core/rewriter/action/insert_after_action.rb', line 9

def begin_pos
  @node.loc.expression.end_pos
end

#end_posInteger

End position, always same to begin position.

Returns:

  • (Integer)

    end position.



16
17
18
# File 'lib/synvert/core/rewriter/action/insert_after_action.rb', line 16

def end_pos
  begin_pos
end