class Parser::Source::Map::Heredoc

Attributes

heredoc_body[R]
heredoc_end[R]

Public Class Methods

new(begin_l, body_l, end_l) click to toggle source
Calls superclass method Parser::Source::Map.new
# File lib/parser/source/map/heredoc.rb, line 8
def initialize(begin_l, body_l, end_l)
  @heredoc_body = body_l
  @heredoc_end  = end_l

  super(begin_l)
end