Class: Glaemscribe::API::IfTree::Term
- Inherits:
-
Object
- Object
- Glaemscribe::API::IfTree::Term
- Defined in:
- lib/api/if_tree.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#parent_code_block ⇒ Object
Returns the value of attribute parent_code_block.
Instance Method Summary collapse
-
#initialize(parent_code_block) ⇒ Term
constructor
A new instance of Term.
- #is_code_lines? ⇒ Boolean
- #is_pre_post_processor_operators? ⇒ Boolean
Constructor Details
#initialize(parent_code_block) ⇒ Term
Returns a new instance of Term.
37 38 39 |
# File 'lib/api/if_tree.rb', line 37 def initialize(parent_code_block) @parent_code_block = parent_code_block end |
Instance Attribute Details
#parent_code_block ⇒ Object
Returns the value of attribute parent_code_block.
36 37 38 |
# File 'lib/api/if_tree.rb', line 36 def parent_code_block @parent_code_block end |
Instance Method Details
#is_code_lines? ⇒ Boolean
40 41 42 |
# File 'lib/api/if_tree.rb', line 40 def is_code_lines? false end |
#is_pre_post_processor_operators? ⇒ Boolean
43 44 45 |
# File 'lib/api/if_tree.rb', line 43 def is_pre_post_processor_operators? false end |