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