Class: Parser::Source::Map::Ternary

Inherits:
Parser::Source::Map show all
Defined in:
lib/parser/source/map/ternary.rb

Instance Attribute Summary collapse

Attributes inherited from Parser::Source::Map

#expression, #node

Instance Method Summary collapse

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

#colonObject (readonly)



8
9
10
# File 'lib/parser/source/map/ternary.rb', line 8

def colon
  @colon
end

#questionObject (readonly)



7
8
9
# File 'lib/parser/source/map/ternary.rb', line 7

def question
  @question
end