Class: Parser::Source::Map::Keyword
- Inherits:
-
Parser::Source::Map
- Object
- Parser::Source::Map
- Parser::Source::Map::Keyword
- Defined in:
- lib/parser/source/map/keyword.rb
Instance Attribute Summary collapse
-
#begin ⇒ Object
readonly
-
#end ⇒ Object
readonly
-
#keyword ⇒ Object
readonly
Attributes inherited from Parser::Source::Map
Instance Method Summary collapse
-
#initialize(keyword_l, begin_l, end_l, expression_l) ⇒ Keyword
constructor
A new instance of Keyword.
Methods inherited from Parser::Source::Map
#==, #column, #last_column, #last_line, #line, #to_hash
Constructor Details
#initialize(keyword_l, begin_l, end_l, expression_l) ⇒ Keyword
Returns a new instance of Keyword.
11 12 13 14 15 16 |
# File 'lib/parser/source/map/keyword.rb', line 11 def initialize(keyword_l, begin_l, end_l, expression_l) @keyword = keyword_l @begin, @end = begin_l, end_l super(expression_l) end |
Instance Attribute Details
#begin ⇒ Object (readonly)
8 9 10 |
# File 'lib/parser/source/map/keyword.rb', line 8 def begin @begin end |
#end ⇒ Object (readonly)
9 10 11 |
# File 'lib/parser/source/map/keyword.rb', line 9 def end @end end |
#keyword ⇒ Object (readonly)
7 8 9 |
# File 'lib/parser/source/map/keyword.rb', line 7 def keyword @keyword end |