Class: Parser::Source::Map::Condition

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

Instance Attribute Summary (collapse)

Attributes inherited from Parser::Source::Map

#expression, #node

Instance Method Summary (collapse)

Methods inherited from Parser::Source::Map

#==, #column, #line, #to_hash

Constructor Details

- (Condition) initialize(keyword_l, begin_l, else_l, end_l, expression_l)

Returns a new instance of Condition



10
11
12
13
14
15
# File 'lib/parser/source/map/condition.rb', line 10

def initialize(keyword_l, begin_l, else_l, end_l, expression_l)
  @keyword = keyword_l
  @begin, @else, @end = begin_l, else_l, end_l

  super(expression_l)
end

Instance Attribute Details

- (Object) begin (readonly)



6
7
8
# File 'lib/parser/source/map/condition.rb', line 6

def begin
  @begin
end

- (Object) else (readonly)



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

def else
  @else
end

- (Object) end (readonly)



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

def end
  @end
end

- (Object) keyword (readonly)



5
6
7
# File 'lib/parser/source/map/condition.rb', line 5

def keyword
  @keyword
end