Method: Parser::Source::Map::Heredoc#initialize
- Defined in:
- lib/parser/source/map/heredoc.rb
permalink #initialize(begin_l, body_l, end_l) ⇒ Heredoc
Returns a new instance of Heredoc.
10 11 12 13 14 15 |
# File 'lib/parser/source/map/heredoc.rb', line 10 def initialize(begin_l, body_l, end_l) @heredoc_body = body_l @heredoc_end = end_l super(begin_l) end |