class Parser::Source::Map::Keyword
Attributes
begin[R]
end[R]
keyword[R]
Public Class Methods
new(keyword_l, begin_l, end_l, expression_l)
click to toggle source
Calls superclass method
Parser::Source::Map.new
# File lib/parser/source/map/keyword.rb, line 9 def initialize(keyword_l, begin_l, end_l, expression_l) @keyword = keyword_l @begin, @end = begin_l, end_l super(expression_l) end