Class: Twostroke::AST::If

Inherits:
Base
  • Object
show all
Defined in:
lib/twostroke/ast/if.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#line

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Twostroke::AST::Base

Instance Attribute Details

#conditionObject

Returns the value of attribute condition.



3
4
5
# File 'lib/twostroke/ast/if.rb', line 3

def condition
  @condition
end

#elseObject

Returns the value of attribute else.



3
4
5
# File 'lib/twostroke/ast/if.rb', line 3

def else
  @else
end

#thenObject

Returns the value of attribute then.



3
4
5
# File 'lib/twostroke/ast/if.rb', line 3

def then
  @then
end

Instance Method Details

#collapseObject



5
6
7
# File 'lib/twostroke/ast/if.rb', line 5

def collapse
  self.class.new condition: condition.collapse, then: @then.collapse, else: @else && @else.collapse
end

#walk(&bk) ⇒ Object



9
10
11
12
13
14
15
# File 'lib/twostroke/ast/if.rb', line 9

def walk(&bk)
  if yield self
    condition.walk &bk
    @then.walk &bk
    @else.walk &bk if @else
  end
end