Class: Glaemscribe::API::IfTree::IfTerm
Instance Attribute Summary collapse
-
#if_conds ⇒ Object
Returns the value of attribute if_conds.
Attributes inherited from Term
Instance Method Summary collapse
-
#initialize(parent_code_block) ⇒ IfTerm
constructor
A new instance of IfTerm.
Methods inherited from Term
#is_code_lines?, #is_pre_post_processor_operators?
Constructor Details
#initialize(parent_code_block) ⇒ IfTerm
Returns a new instance of IfTerm.
50 51 52 53 |
# File 'lib/api/if_tree.rb', line 50 def initialize(parent_code_block) super(parent_code_block) @if_conds = [] end |
Instance Attribute Details
#if_conds ⇒ Object
Returns the value of attribute if_conds.
49 50 51 |
# File 'lib/api/if_tree.rb', line 49 def if_conds @if_conds end |